forked from Swader/flyingpiranhas-mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·31 lines (31 loc) · 1.02 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
{
"name": "flyingpiranhas/mvc",
"type": "library",
"description": "The flyingpiranhas mvc library is backbone of the MVC wireframework. It is a scaffold one can use to quickly and reliably get an MVC app up and running. It has some dependencies, though, but if you're installing through composer they're all pulled automatically.",
"keywords": ["framework","wireframe", "wireframework"],
"homepage": "http://github.com/Swader/flyingpiranhas-mvc",
"license": "Apache-2.0",
"authors": [
{
"name": "Bruno Skvorc",
"email": "[email protected]",
"homepage": "http://www.bitfalls.com",
"role": "Developer"
},
{
"name": "Ivan Pintar",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"flyingpiranhas/common" : "dev-master"
},
"autoload": {
"psr-0": {
"flyingpiranhas\\mvc": "../.."
}
},
"target-dir": ""
}