-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
37 lines (37 loc) · 1.12 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
34
35
36
37
{
"name": "imefisto/psr-swoole-native",
"authors": [
{
"name": "Ignacio El Kadre",
"email": "imefisto@gmail.com"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"Imefisto\\PsrSwoole\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imefisto\\PsrSwoole\\Testing\\": "tests/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"dflydev/fig-cookies": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"nyholm/psr7": "^1.0",
"swoole/ide-helper": "^4.8"
},
"scripts": {
"test": "./vendor/bin/phpunit --configuration phpunit.xml",
"test:coverage": "./vendor/bin/phpunit --configuration phpunit.xml --coverage-clover build/logs/clover.xml --log-junit build/logs/junit.xml --coverage-html build/coverage",
"sniff": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests examples",
"format": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests examples"
}
}