-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "pitch/symfony-adr",
"description": "This bundle makes it easier to follow ADR pattern while writing a Symfony application",
"keywords": ["ADR", "Action-Domain-Responder", "Symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Philipp Fritsche",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Pitch\\AdrBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pitch\\AdrBundle\\": "test/"
}
},
"require": {
"php": ">=7.4",
"composer/composer": "^1 || ^2",
"pitch/annotation": "^1.0",
"symfony/config": "^5.4.9 || ^6",
"symfony/dependency-injection": "^5.4.9 || ^6",
"symfony/http-kernel": "^5.4.9 || ^6"
},
"require-dev": {
"phpunit/phpunit": "^9.5.21",
"doctrine/annotations": "^1.12",
"mikey179/vfsstream": "^1.6.10",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/framework-bundle": "^5.4.9 || ^6"
},
"scripts": {
"lint": "phpcs",
"lint-fix" : "phpcbf",
"test": "phpunit",
"test-s": "phpunit --stop-on-failure"
}
}