-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.08 KB
/
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
{
"name": "ardillo/loop",
"description": "ReactPHP Event Loop running on Ardillo",
"version": "0.1.0",
"license": "MIT",
"require": {
"php": ">=8.1.0",
"ext-ardillo": "*",
"react/event-loop": "1.4.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.9",
"react/promise": "^2.10",
"vimeo/psalm": "^5.6"
},
"autoload": {
"psr-4": {
"Ardillo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ardillo\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse -c ./etc/phpstan.neon -n -vvv --ansi --level=max src",
"psalm": "php -d memory_limit=-1 ./vendor/bin/psalm --config=./etc/psalm.xml --show-info=true",
"test": "php -d memory_limit=-1 ./vendor/bin/phpunit -c ./etc/phpunit.xml.dist",
"coverage": "php -d extension=pcov -d memory_limit=-1 ./vendor/bin/phpunit -c ./etc/phpunit.xml.dist --coverage-text --coverage-html=reports/coverage"
}
}