-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "egarciahz/airam",
"description": "Airam is an easy-to-start web development framework, focused on providing the developer with an understandable environment using familiar template syntax and Component-oriented flow, router-centric, and looking similar to the early days of Angular2.",
"type": "project",
"keywords": [
"framework",
"skeleton",
"template",
"airam"
],
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"require": {
"doctrine/orm": "^2.7",
"egarciahz/airam-framework": "dev-nightly"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/egarciahz/airam-framework.git"
}
],
"license": "MIT",
"authors": [
{
"name": "Ezequiel Garcia",
"email": "[email protected]"
}
],
"config": {
"bin-dir": ".bin",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}