-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 994 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
38
39
40
41
42
43
{
"name": "paymaxi/query",
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4 || ^8.0",
"doctrine/orm": "^2.5",
"neomerx/json-api": "^1.0|^2.0",
"nesbot/carbon": "^1.21|^2.4",
"ramsey/uuid": "^3.5|^4.0",
"sylius/registry": "^0.19.0|^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^2.8",
"phpstan/phpstan": "^0.12",
"doctrine/cache": "^1.11"
},
"autoload": {
"psr-4": {
"Paymaxi\\Component\\": "src/Paymaxi/Component"
},
"exclude-from-classmap": [
"**/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Paymaxi\\Component\\Query\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"fix": "./vendor/bin/php-cs-fixer fix --config .php_cs.php",
"static": "./vendor/bin/phpstan analyze -c .phpstan.neon --level=1 src"
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"prefer-stable": true
}