-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
60 lines (60 loc) · 1.77 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
58
59
60
{
"name": "dasprid/ajasta",
"type": "project",
"homepage": "https://github.com/dasprid/ajasta",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Ben Scholzen",
"homepage": "https://www.dasprids.de/"
}
],
"require": {
"php": "^7.0",
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "^1.0",
"zendframework/zend-expressive-helpers": "^2.0",
"zendframework/zend-stdlib": "^3.0",
"zendframework/zend-expressive-fastroute": "^1.0",
"zendframework/zend-servicemanager": "^3.0",
"ocramius/proxy-manager": "^1.0",
"ramsey/uuid": "^3.4",
"dasprid/container-interop-doctrine": "^0.2.2",
"beberlei/assert": "^2.5",
"zendframework/zend-validator": "^2.7",
"ocramius/psr7-session": "^1.0",
"ocramius/psr7-csrf": "^1.0",
"zendframework/zend-inputfilter": "^2.7",
"zendframework/zend-filter": "^2.7",
"dasprid/formidable": "^0.1.0",
"zendframework/zend-console": "^2.6",
"zendframework/zend-expressive-platesrenderer": "^1.1",
"commerceguys/addressing": "^0.8.2",
"commerceguys/intl": "^0.7.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3",
"filp/whoops": "^2.1.2"
},
"autoload": {
"psr-4": {
"Ajasta\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AjastaTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public/ public/index.php",
"test": "phpunit"
}
}