-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.5 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "digitalstate/microservice",
"license": "MIT",
"type": "project",
"description": "The DigitalState Abstract Microservice",
"homepage": "https://digitalstate.ca",
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php": "^7.1.3",
"ext-iconv": "*",
"api-platform/api-pack": "^1.1",
"defuse/php-encryption": "^2.2",
"digitalstate/core": "0.19.0",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"doctrine/doctrine-migrations-bundle": "^1.3",
"guzzlehttp/guzzle": "^6.3",
"justinrainbow/json-schema": "^5.0",
"knplabs/doctrine-behaviors": "^1.5",
"lexik/jwt-authentication-bundle": "^2.6",
"ramsey/uuid": "^3.8",
"scienta/doctrine-json-functions": "^4.1",
"sensio/framework-extra-bundle": "^5.2",
"sensiolabs/security-checker": "^5.0",
"symfony/console": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/lts": "^4@dev",
"symfony/monolog-bundle": "^3.3",
"symfony/swiftmailer-bundle": "^3.2",
"symfony/translation": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"api-platform/schema-generator": "^2.1",
"behat/behat": "^3.5",
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.3",
"behat/symfony2-extension": "^2.1",
"behatch/contexts": "^3.2",
"symfony/profiler-pack": "^1.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false
}
}
}