-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (32 loc) · 953 Bytes
/
composer.json
File metadata and controls
36 lines (32 loc) · 953 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
{
"name": "ale-php/progs_base",
"type": "framework",
"description": "base for developer web php",
"keywords": ["micro framework","base for developer web"],
"homepage": "https://github.com/ale-php/progs_base",
"license": "MIT",
"authors": [
{
"name": "Alexandre Evangelista de Souza",
"email": "alexandre@progs.net.br",
"homepage": "http://progs.net.br",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"SexCode\\Config\\": "app/Config/",
"Progs\\Controller\\": "app/Controllers/",
"Progs\\Model\\": "app/Models/",
"SexCode\\Lib\\": "app/Lib/"
}
},
"require": {
"php" :">= 5.4",
"twig/twig": "~1.0",
"bramus/router": "^1.0",
"doctrine/common": "2.4.*",
"doctrine/dbal": "2.4.*",
"doctrine/orm": "2.4.*"
}
}