-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.69 KB
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
{
"name": "setono/tag-bag-bundle",
"description": "A Symfony bundle that integrates the tag bag library into Symfony",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "joachim@loevgaard.dk"
}
],
"require": {
"php": ">=8.2",
"setono/tag-bag": "^2.5",
"symfony/config": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/event-dispatcher": "^6.4 || ^7.4",
"symfony/http-foundation": "^6.4 || ^7.4",
"symfony/http-kernel": "^6.4 || ^7.4",
"twig/twig": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^5.1 || ^6.0",
"nyholm/symfony-bundle-test": "^3.0",
"phpstan/phpstan-symfony": "^2.0",
"setono/code-quality-pack": "^3.3",
"symfony/twig-bundle": "^6.4 || ^7.4"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\TagBagBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\TagBagBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit",
"rector": "rector"
}
}