-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.13 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "lin3s/admin-ddd-extensions-bundle",
"description": "DDD extensions for LIN3S-Admin",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "LIN3S",
"email": "info@lin3s.com",
"homepage": "https://lin3s.com"
}
],
"require": {
"lin3s/admin-bundle": ">=0.5",
"lin3s/shared-kernel": ">=0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"lin3s/cms-kernel": "^0.2",
"simple-bus/symfony-bridge": "^4.1",
"symfony/web-server-bundle": "^3.3",
"monolog/monolog": "^1.23"
},
"scripts": {
"cs": [
"vendor/bin/php-cs-fixer fix --config-file=.php_cs",
"vendor/bin/php-cs-fixer fix --config-file=.phpspec_cs"
]
},
"autoload": {
"psr-4": {
"LIN3S\\AdminDDDExtensionsBundle\\": "src/LIN3S/AdminDDDExtensionsBundle/"
},
"exclude-from-classmap": [
"/spec/"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Application\\": "tests/Application/src/"
}
}
}