-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.27 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "caesar/security-message-bundle",
"description": "Security Message Bundle",
"type": "symfony-bundle",
"license": "proprietary",
"require": {
"php": "^7.3",
"nelmio/api-doc-bundle": "^3.7",
"ramsey/uuid": "^4.1",
"symfony/console": "~4.4.13",
"symfony/dotenv": "~4.4.13",
"symfony/flex": "~1.9",
"symfony/form": "~4.4.13",
"symfony/framework-bundle": "~4.4.13",
"symfony/serializer-pack": "^1.0",
"symfony/validator": "~4.4.13",
"symfony/yaml": "~4.4.13"
},
"require-dev": {
"ext-json": "*",
"symfony/phpunit-bridge": "^5.1"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Caesar\\SecurityMessageBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Caesar\\SecurityMessageBundle\\Tests\\": "tests/"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "~4.4.13"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
}
}
}