-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1018 Bytes
/
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
{
"name": "yceruto/decorator-bundle",
"type": "symfony-bundle",
"keywords": ["decorator", "wrapper"],
"license": "MIT",
"description": "Symfony framework integration of the Decorator library",
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"yceruto/decorator": "^1.3",
"symfony/framework-bundle": "^6.4|^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^3.2",
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^11.3",
"symfony/browser-kit": "^7.2",
"symfony/messenger": "^7.2",
"symfony/mime": "^7.2",
"symfony/serializer": "^7.2",
"symfony/yaml": "^7.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Yceruto\\DecoratorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yceruto\\DecoratorBundle\\Tests\\": "tests/"
}
}
}