-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 969 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
38
39
40
41
42
43
44
{
"name": "wambo/demo",
"description": "a demo store with the wambo system",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "René Penner",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Andy Koch",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Wambo\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"Wambo\\Tests\\": "app/tests"
}
},
"require": {
"slim/slim": "v3.4.2",
"wambo/module-core": "v0.2.0",
"wambo/module-test": "dev-develop",
"wambo/module-frontend": "dev-develop",
"wambo/module-performance-tester": "dev-develop",
"wambo/wambo-composer-installer": "dev-develop",
"tedivm/stash": "^0.14.1",
"php-di/slim-bridge": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "5.4.*"
},
"repositories": [],
"minimum-stability": "dev",
"prefer-stable": true
}