forked from Swader/flyingpiranhas-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 1002 Bytes
/
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/forms",
"type": "library",
"description": "The flyingpiranhas forms are a set of classes to help with form generation and processing in PHP. It has some dependencies, though, but if you're installing through composer they're all pulled automatically.",
"keywords": ["framework","wireframe", "wireframework", "forms"],
"homepage": "http://github.com/Swader/flyingpiranhas-forms",
"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\\forms": "../.."
}
},
"target-dir": ""
}