-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.58 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "granadaorm/granada",
"type": "library",
"description": "Active Record / ORM with eager loading, lazy loading and more",
"keywords": ["active record", "orm","eager-loading", "paris", "idiorm", "database"],
"homepage": "https://github.com/GranadaORM/Granada",
"support": {
"issues": "https://github.com/GranadaORM/Granada/issues",
"source": "https://github.com/GranadaORM/Granada"
},
"license": [
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-4-Clause"
],
"authors": [
{
"name": "Josh Marshall",
"email": "josh@jmarshall.com.au",
"homepage": "https://www.jmarshall.com.au",
"role": "Developer"
},
{
"name": "Erik Wiesenthal",
"email": "erikforo@hotmail.com",
"role": "Initial Developer"
}
],
"scripts": {
"phpstan": "nice phpstan --memory-limit=10240M analyze -c phpstan.neon",
"test": "phpunit"
},
"replace": {
"surt/granada": "*"
},
"require": {
"php": ">=8.1"
},
"suggest": {
"granadaorm/builder": "Automatically build model classes from the database schema",
"granadaorm/form": "Quick generate html forms from the model structure using css frameworks such as Bootstrap and Bulma"
},
"autoload": {
"psr-4": {"Granada\\": "src/Granada/"}
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.75"
}
}