forked from dpeuscher/apitk-url-bundle
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
72 lines (72 loc) · 1.96 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
63
64
65
66
67
68
69
70
71
72
{
"name": "check24/apitk-url-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "This bundle provides filter, sorting and pagination for RESTful API's",
"authors": [
{
"name": "Michael Wolf",
"email": "wulf1337@gmail.com"
}
],
"autoload": {
"psr-4": {
"Shopping\\ApiTKUrlBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/byWulf/apitk-common-bundle.git"
},
{
"type": "vcs",
"url": "https://github.com/byWulf/apitk-header-bundle.git"
}
],
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"symfony/config": ">=5.3 <6.0",
"symfony/dependency-injection": ">=5.3 <6.0",
"symfony/http-kernel": ">=5.3 <6.0",
"symfony/framework-bundle": ">=5.3 <6.0",
"doctrine/annotations": "^1.8",
"nelmio/api-doc-bundle": "^3.4",
"sensio/framework-extra-bundle": "^5.1 || ^6.0",
"check24/apitk-common-bundle": "^2.2 || ^3.0",
"check24/apitk-header-bundle": "^2.2 || ^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"captainhook/captainhook": "^5.0",
"captainhook/plugin-composer": "^5.1",
"doctrine/orm": "^2.6",
"doctrine/doctrine-bundle": ">=1.8 <3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-deprecation-rules": "^0.12.5"
},
"scripts": {
"test:php-cs-fixer": "@php vendor/bin/php-cs-fixer fix --verbose --dry-run",
"test:phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon .",
"test:phpmd": "@php vendor/bin/phpmd ./ text ruleset.xml --exclude vendor",
"test": [
"@test:php-cs-fixer",
"@test:phpstan",
"@test:phpmd"
],
"fix:php-cs-fixer": "@php vendor/bin/php-cs-fixer fix --verbose",
"fix": [
"@fix:php-cs-fixer"
]
}
}