-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 859 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 859 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
{
"name": "jenssegers/model",
"description": "An Laravel eloquent-like model class, for Laravel and other frameworks",
"keywords": ["laravel", "eloquent", "model"],
"homepage": "https://github.com/jenssegers/model",
"license" : "MIT",
"authors": [
{
"name": "Jens Segers",
"homepage": "https://jenssegers.com"
}
],
"require": {
"illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "*",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Jenssegers\\Model\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/stubs"]
}
}