-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 827 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 827 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
{
"name": "mattcolf/flex",
"description": "Flex is a flexible and easy to use framework.",
"type": "library",
"license": "BSD",
"authors": [
{
"name": "Matt Colf",
"email": "mattcolf@mattcolf.com"
}
],
"autoload": {
"psr-4": {
"MattColf\\Flex\\": "src"
}
},
"require": {
"php": "^7.1",
"filp/whoops": "^2.1",
"league/route": "^3.0",
"symfony/dotenv": "^3.3",
"nikic/fast-route": "^1.2",
"zendframework/zend-diactoros": "^1.6",
"psr/log": "^1.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"http-interop/http-middleware": "^0.5"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.4"
}
}