This repository has been archived by the owner on Nov 29, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.69 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "rezzza/symfony-micro-edition",
"authors": [
{
"name": "ReZzZa Team",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "": "src/" },
"classmap": [ "app/AppKernel.php" ],
"exclude-from-classmap": ["**/Tests/", "**/Test/"]
},
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"symfony/symfony": "^3.0",
"ramsey/uuid": "^3.3",
"symfony/monolog-bundle": "^2.10",
"php-http/curl-client": "^1.4",
"guzzlehttp/psr7": "^1.2",
"php-http/message": "^1.2",
"pascaldevink/shortuuid": "^1.0",
"icicleio/http": "^0.3",
"league/tactician-bundle": "^0.4.1",
"league/tactician-logger": "^0.9.0",
"rezzza/symfony-rest-api-json": "^1.0"
},
"require-dev": {
"behat/behat": "^3.1",
"atoum/atoum": "^2.6",
"rezzza/rest-api-behat-extension": "^5.0",
"behat/symfony2-extension": "^2.1",
"rezzza/moco-behat-extension": "^1.0.0",
"guzzlehttp/guzzle": "^6.2"
},
"suggest": {
"christiaan/stream-process": "To use bin/monitor on local to help dev",
"mkraemer/react-inotify": "To use bin/monitor on local to help dev",
"mkraemer/react-pcntl": "To use bin/monitor on local to help dev"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"post-install-cmd": [
"./bin/console cache:clear",
"echo '[]' > var/moco/fixtures.json"
],
"post-update-cmd": [
"./bin/console cache:clear"
]
}
}