Skip to content
This repository has been archived by the owner on Feb 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #161 from leocavalcante/dev
Browse files Browse the repository at this point in the history
v1.5.1
  • Loading branch information
leocavalcante authored Mar 17, 2019
2 parents fe48078 + 0f1e056 commit 32173a4
Show file tree
Hide file tree
Showing 32 changed files with 656 additions and 798 deletions.
1 change: 1 addition & 0 deletions .phan/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@
// to `exclude_analysis_directory_list`.
'exclude_analysis_directory_list' => [
'src/Swoole/Swoole.php',
'src/Db/Redis.php',
'vendor/',
],

Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
language: php

php:
- '7.2'
- '7.3'
- "7.2"
- "7.3"

install:
- pecl install -f mongodb-1.5.3 ast-1.0.1
- pecl install -f mongodb ast
- composer install

script:
Expand All @@ -18,4 +18,4 @@ after_success:

branches:
only:
- master
- master
23 changes: 0 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,29 +139,6 @@ Log\alert('alert', ['level' => 'alert']);
Log\emergency('emergency', ['level' => 'emergency']);
```

#### Ratchet

Real-time web apps using WebSockets.

```bash
$ composer require cboden/ratchet
```

```php
use Siler\Ratchet;

Ratchet\connected(function ($conn) {
print("New connection\n");
});

Ratchet\inbox(function ($from, $message) {
printf("New message: %s\n", $message);
});

print("Listen on 3333\n");
Ratchet\init(3333);
```

#### GraphQL

[A query language for your API](http://graphql.org/). Thanks to webonyx/graphql-php you can build you Schema from a
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"src/Container/Container.php",
"src/Db/Db.php",
"src/Db/Mongo.php",
"src/Db/Redis.php",
"src/Diactoros/Diactoros.php",
"src/Dotenv/Dotenv.php",
"src/Functional/Functional.php",
Expand All @@ -59,12 +60,11 @@
"src/Http/Request.php",
"src/Http/Response.php",
"src/HttpHandlerRunner/HttpHandlerRunner.php",
"src/Jwt/Jwt.php",
"src/Mail/SwiftMailer.php",
"src/Monolog/Monolog.php",
"src/Prelude/Str.php",
"src/Prelude/Tuple.php",
"src/Ratchet/Ratchet.php",
"src/Result/Result.php",
"src/Route/Route.php",
"src/Stratigility/Stratigility.php",
"src/Swoole/Swoole.php",
Expand All @@ -90,4 +90,4 @@
"suggest": {
"vlucas/phpdotenv": "Storing configuration in the environment is one of the tenets of a twelve-factor app."
}
}
}
Loading

0 comments on commit 32173a4

Please sign in to comment.