-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
98 lines (98 loc) · 3.78 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "demos-europe/edt",
"description": "This repository uses symplify/monorepo-builder to release several packages. Check the packages folder for more information.",
"license": "MIT",
"require": {
"cebe/php-openapi": "^1.5",
"doctrine/collections": "^1.5 || ^2.1",
"doctrine/orm": "^2.5",
"ext-json": "*",
"league/fractal": "^0.19 || ^0.20",
"nette/php-generator": "^4.0",
"nikic/php-parser": "^4.14 || ^5",
"pagerfanta/core": "^2.7 || ^3 || ^4.2",
"php": "^8.1",
"phpdocumentor/reflection-docblock": "^5.1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1.4 || ^3.0.0",
"symfony/cache": "^5 || ^6 || ^7",
"symfony/http-foundation": "5.*.* || ^6.1.12 || ^7",
"symfony/routing": "5.*.* || ^6.3.5 || ^7",
"symfony/validator": "5.*.* || 6.*.* || ^7",
"thecodingmachine/safe": "^2.4.0",
"webmozart/assert": "^1.11"
},
"authors": [
{
"name": "Christian Dressler",
"email": "dressler@demos-deutschland.de"
},
{
"name": "Stefan Graupner",
"email": "efrane@meanderingsoul.com"
}
],
"require-dev": {
"doctrine/annotations": "^2.0",
"ergebnis/phpstan-rules": "^2.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4.2",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.4 || ^11",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symplify/monorepo-builder": "^11.2",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"vimeo/psalm": "^5.6",
"nesbot/carbon": "^2.0.0 || ^3.1.1"
},
"autoload": {
"psr-4": {
"EDT\\ConditionFactory\\": "packages/queries/src/ConditionFactory",
"EDT\\DqlQuerying\\": "packages/dql/src/",
"EDT\\JsonApi\\": "packages/jsonapi/src/",
"EDT\\Parsing\\": "packages/paths/src/Parsing/",
"EDT\\PathBuilding\\": "packages/paths/src/PathBuilding/",
"EDT\\Querying\\": "packages/queries/src/",
"EDT\\Querying\\ConditionParsers\\": "packages/extra/src/Querying/ConditionParsers/",
"EDT\\Querying\\ObjectProviders\\": "packages/access-definitions/src/Querying/ObjectProviders/",
"EDT\\Wrapping\\": "packages/access-definitions/src/Wrapping/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": [
"packages/access-definitions/tests/",
"packages/dql/tests/",
"packages/extra/tests/",
"packages/jsonapi/tests/",
"packages/paths/tests/",
"packages/queries/tests/"
]
}
},
"replace": {
"demos-europe/edt-access-definitions": "0.26.0",
"demos-europe/edt-dql": "0.26.0",
"demos-europe/edt-extra": "0.26.0",
"demos-europe/edt-jsonapi": "0.26.0",
"demos-europe/edt-paths": "0.26.0",
"demos-europe/edt-queries": "0.26.0"
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"repman-io/composer-plugin": true,
"symfony/flex": true
}
},
"scripts": {
"sniffer:php8": "phpcs -p ./packages/ --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0",
"phpstan": "phpstan analyse",
"phpstan-baseline": "vendor/phpstan/phpstan/phpstan analyse --configuration phpstan.neon --generate-baseline",
"phpunit": "./bin/phpunit"
}
}