Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding coroutine processor #39

Merged
merged 13 commits into from
Sep 5, 2024
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
Loading