-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.32 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
47
48
49
50
51
52
53
{
"name": "riverwaysoft/api-tools",
"description": "Api tools",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "mitalcoi",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src tests",
"test": "vendor/bin/phpunit tests",
"cs": "vendor/bin/php-cs-fixer fix src"
},
"suggest": {
"doctrine/orm": "^2.9",
"api-platform/core": "^2.6",
"symfony/messenger": "^5.3|^6.0|^6.2"
},
"autoload": {
"psr-4": {
"Riverwaysoft\\ApiTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Riverwaysoft\\ApiTools\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0|^8.1",
"ext-intl": "*",
"giggsey/libphonenumber-for-php": "^8.11",
"myclabs/php-enum": "^1.7",
"moneyphp/money": "^3",
"symfony/intl": "^5.3|^6.0|^6.2",
"symfony/polyfill-uuid": "^1.23",
"phpdocumentor/reflection-docblock": "^5.2",
"symfony/serializer": "^5.3|6.0.1|^6.2"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "^3.0",
"doctrine/orm": "^2.9",
"symfony/messenger": "^5.3|^6.0|^6.2",
"api-platform/core": "^2.6",
"symfony/validator": "^5.3|^6.0|^6.2",
"phpunit/phpunit": "^9.5",
"spatie/phpunit-snapshot-assertions": "^4.2"
}
}