forked from jaymeh/laravel-publishable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 942 Bytes
/
composer.json
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
{
"name": "pawelmysior/laravel-publishable",
"description": "Toggle the published state of your Eloquent models easily",
"keywords": ["laravel", "eloquent", "trait"],
"license": "MIT",
"authors": [
{
"name": "Pawel Mysior",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
"nesbot/carbon": "^1.26.3 || ^2.0"
},
"require-dev": {
"orchestra/database": "~3.4.0|~3.5.0|~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0",
"orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0|~3.7.0|~3.8.0|^4.0|^5.0",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"PawelMysior\\Publishable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PawelMysior\\Publishable\\Tests\\": "tests/"
}
}
}