-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1009 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 1009 Bytes
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
{
"name": "simply/application",
"type": "library",
"description": "A simple middleware application framework based on PSR standards",
"keywords": [
"psr-17",
"psr-15",
"psr-11",
"psr-7",
"framework",
"application"
],
"license": "MIT",
"authors": [
{
"name": "Riikka Kalliomäki",
"email": "riikka.kalliomaki@gmail.com",
"homepage": "http://riimu.net"
}
],
"require": {
"php": "^7.2",
"psr/http-server-middleware": "^1.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"simply/router": "^0.2.4",
"simply/container": "^0.3.1",
"zendframework/zend-diactoros": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"riimu/php-cs-fixer-config": "^0.1.1",
"riimu/sami-config": "^0.1.0"
},
"autoload": {
"psr-4": {
"Simply\\Application\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Simply\\Application\\": "tests/tests/"
}
}
}