-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 956 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 956 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
{
"name": "laradic/generators",
"description": "Code Generators",
"homepage": "https://radic.ninja",
"keywords": ["generator", "structure"],
"license": "MIT",
"authors": [
{"name": "Robin Radic", "homepage": "http://robin.radic.ninja", "email": "rradic@hotmail.com", "role": "Developer"}
],
"require": {
"php": ">=7.1.0",
"illuminate/database": "^5.0|^6.0|^7.0|^8.0",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0",
"doctrine/dbal": "^2.1"
},
"require-dev": {
"laradic/testing": "^1.2"
},
"autoload": {
"psr-4": {
"Laradic\\Generators\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laradic\\Tests\\Generators\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev",
"dev-develop": "3.0.x-dev"
},
"laravel": {
}
}
}