-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
38 lines (38 loc) · 947 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "seregazhuk/react-promise-testing",
"description": "PHPUnit-based library for testing ReactPHP promises",
"keywords": [
"Testing",
"ReactPHP",
"promise",
"test"
],
"homepage": "https://github.com/seregazhuk/php-react-promise-testing",
"license": "MIT",
"authors": [
{
"name": "Sergey Zhuk",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"react/promise": "^2.8",
"phpunit/phpunit": "^9.5",
"phpunit/php-code-coverage": "^9.2",
"clue/block-react": "^1.4"
},
"autoload": {
"psr-4": {
"seregazhuk\\React\\PromiseTesting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"seregazhuk\\React\\PromiseTesting\\tests\\": "tests/"
}
},
"scripts": {
"ci:tests": "vendor/bin/phpunit tests"
}
}