-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.37 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.37 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "granadaorm/builder",
"type": "library",
"description": "Class autogeneration for Granada ORM models",
"keywords": [
"class autogeneration",
"active record",
"orm",
"eager-loading",
"paris",
"idiorm",
"database"
],
"homepage": "https://github.com/GranadaORM/Builder",
"support": {
"issues": "https://github.com/GranadaORM/Builder/issues",
"source": "https://github.com/GranadaORM/Builder"
},
"license": [
"MIT"
],
"authors": [
{
"name": "Josh Marshall",
"email": "josh@jmarshall.com.au",
"homepage": "https://www.jmarshall.com.au",
"role": "Developer"
}
],
"scripts": {
"setup_test": "./bin/granadabuilder tests/testdb2modelconf.json",
"test": "phpunit",
"ci": "act -P ubuntu-latest=shivammathur/node:latest"
},
"bin": [
"bin/granadabuilder"
],
"require": {
"php": ">=7.2",
"cakephp/chronos": "^2.0",
"doctrine/inflector": "^2.0",
"latte/latte": "^2.10",
"granadaorm/granada": "^3.1"
},
"autoload": {
"psr-4": {
"Granada\\Builder\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.6|^7.3|^9.0"
}
}