Skip to content

Commit

Permalink
Merge pull request #39 from utopia-php/dev-coroutines
Browse files Browse the repository at this point in the history
Adding coroutine processor
  • Loading branch information
christyjacob4 authored Sep 5, 2024
2 parents 48610e0 + 2862d90 commit f8af1d6
Show file tree
Hide file tree
Showing 11 changed files with 2,452 additions and 86 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
composer.lock
/vendor/
/.idea/
.phpunit.result.cache
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ require_once './vendor/autoload.php';

use Utopia\CLI\CLI;
use Utopia\CLI\Console;
use Utopia\CLI\Adapters\Generic;
use Utopia\Http\Validator\Wildcard;

$cli = new CLI();
$cli = new CLI(new Generic());

$cli
->task('command-name')
Expand Down
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "cli", "command line"],
"license": "MIT",

"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml < tests/input.txt",
"check": "vendor/bin/phpstan analyse -c phpstan.neon",
Expand All @@ -16,13 +15,17 @@
},
"require": {
"php": ">=7.4",
"utopia-php/framework": "0.34.*"
"utopia-php/framework": "1.0.*",
"utopia-php/di": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.10",
"laravel/pint": "1.2.*"
"laravel/pint": "1.2.*",
"swoole/ide-helper": "4.8.8"
},
"minimum-stability": "dev"


}
Loading

0 comments on commit f8af1d6

Please sign in to comment.