forked from tighten/parental
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 849 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 849 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
{
"name": "calebporzio/parental",
"description": "A simple eloquent trait that allows relationships to be accessed through child models.",
"license": "MIT",
"authors": [
{
"name": "Caleb Porzio",
"email": "calebporzio@gmail.com"
}
],
"require": {
"illuminate/database": "~5.6.0|~5.7.0|~5.8.0|^6.0.0|^7.0.0|^8.0.0",
"illuminate/events": "~5.6.0|~5.7.0|~5.8.0|^6.0.0|^7.0.0|^8.0.0"
},
"require-dev": {
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Parental\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Parental\\Tests\\": "tests/",
"Database\\Factories\\": "tests/factories/"
}
}
}