summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json9
1 files changed, 6 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 0be4bf5..8bdcd35 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
{
"name": "react/async",
- "description": "Async utilities for ReactPHP",
+ "description": "Async utilities and fibers for ReactPHP",
"keywords": ["async", "ReactPHP"],
"license": "MIT",
"authors": [
@@ -26,14 +26,17 @@
}
],
"require": {
- "php": ">=7.1",
+ "php": ">=8.1",
"react/event-loop": "^1.2",
"react/promise": "^3.0 || ^2.8 || ^1.2.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^7.5"
+ "phpunit/phpunit": "^9.3"
},
"autoload": {
+ "psr-4": {
+ "React\\Async\\": "src/"
+ },
"files": [
"src/functions_include.php"
]