-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.3 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
38
39
40
41
42
43
44
45
46
{
"name": "veewee/psr18-react-browser",
"description": "A small PSR-18 bridge for react browser",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Veewee\\Psr18ReactBrowser\\": "src/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"react/http": "^1.9",
"react/async": "^4.1",
"psr/http-client": "^1.0"
},
"provide": {
"psr/http-client-implementation": "^1"
},
"require-dev": {
"vimeo/psalm": "^5.15",
"phpunit/phpunit": "^10.3",
"friendsofphp/php-cs-fixer": "^3.30",
"symfony/process": "^6.3",
"nyholm/psr7": "^1.8",
"veewee/composer-run-parallel": "^1.2"
},
"config": {
"allow-plugins": {
"veewee/composer-run-parallel": true
}
},
"scripts": {
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php ./vendor/bin/php-cs-fixer fix --dry-run",
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix",
"psalm": "./vendor/bin/psalm --no-cache --stats",
"tests": "./vendor/bin/phpunit --coverage-text --color",
"ci": "@parallel cs psalm tests"
}
}