-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1013 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
{
"name": "prsw/typeapi-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "TypeApi Impelementation For Symfony",
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"psx/api": "^7.1",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/serializer": "^7.1"
},
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix src --allow-risky=yes",
"cs": "./vendor/bin/php-cs-fixer check src --allow-risky=yes -vvv --diff",
"phpstan": "./vendor/bin/phpstan",
"unit": "./vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"PRSW\\TypeApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PRSW\\TypeApiBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.3"
}
}