-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
62 lines (62 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
{
"name": "undabot/json-api-symfony",
"description": "Allow symfony apps to easy handle JSON API compatible requests and responses",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8",
"ext-json": "*",
"undabot/json-api-core": "2.1.7",
"symfony/http-kernel": "^5.0 || ^6.0",
"symfony/validator": "^5.0 || ^6.0",
"symfony/orm-pack": "^2.1",
"doctrine/annotations": "^1.12",
"symfony/property-access": "^5.0 || ^6.0",
"symfony/yaml": "^5.0 || ^6.0",
"ramsey/uuid": "^4.1",
"beberlei/assert": "^3.3",
"sensio/framework-extra-bundle": "^6.1",
"symfony/serializer": "^5.0 || ^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-beberlei-assert": "^0.12",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"autoload": {
"psr-4": {
"Undabot\\SymfonyJsonApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Undabot\\SymfonyJsonApi\\Tests\\": "tests/"
}
},
"scripts": {
"lint": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --ansi --dry-run"
],
"phpstan": [
"php -d memory_limit=-1 vendor/bin/phpstan analyse -n --ansi --no-progress"
],
"test": [
"php -d memory_limit=-1 vendor/bin/phpunit tests/"
],
"qc": [
"@lint",
"@phpstan",
"@test"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}