-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (37 loc) · 817 Bytes
/
composer.json
File metadata and controls
executable file
·38 lines (37 loc) · 817 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
{
"name": "gustavonecore/leftaro",
"description": "PSR-[7,11,15] compliant micro framework for restful API.",
"type": "library",
"license": "MIT",
"authors": [
{ "name": "Gustavo Delgado R." }
],
"require": {
"php": ">=7.0",
"psr/http-message": "~1.0",
"nikic/fast-route": "^1.2",
"pimple/pimple": "^3.0",
"zendframework/zend-diactoros": "^1.6",
"hassankhan/config": "^0.10.0",
"php-di/php-di": "^5.4",
"monolog/monolog": "^1.23",
"twig/twig": "^2.4",
"doctrine/dbal": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "~4.3"
},
"autoload": {
"psr-4": {
"Leftaro\\": "src/",
"Leftaro\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}