-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1004 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 1004 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
39
{
"name": "granadaorm/form",
"type": "library",
"description": "Form automation for Granada ORM models",
"homepage": "https://github.com/GranadaORM/Form",
"support": {
"issues": "https://github.com/GranadaORM/Form/issues",
"source": "https://github.com/GranadaORM/Form"
},
"license": [
"MIT"
],
"authors": [
{
"name": "Josh Marshall",
"email": "josh@jmarshall.com.au",
"homepage": "https://www.jmarshall.com.au",
"role": "Developer"
}
],
"scripts": {
"test": "phpunit"
},
"require": {
"php": ">=5.6.0",
"cakephp/chronos": "^2.0",
"doctrine/inflector": "^2.0",
"twig/twig": "^3.0",
"granadaorm/builder": "^1.0"
},
"autoload": {
"psr-4": {
"Granada\\Form\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.6|^7.3"
}
}