-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 KB
/
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
33
34
35
36
37
38
{
"name": "recca0120/eloquent-logrotate",
"description": "laravel eloquent auto create table by daily or weekly or monthly or yearly",
"keywords": ["laravel", "eloquent", "model", "logrotate", "rotate", "log", "hourly", "daily", "weekly", "monthly", "yearly"],
"license": "MIT",
"authors": [
{
"name": "recca0120",
"email": "recca0120@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/database": "^5.1"
},
"require-dev": {
"mockery/mockery": "~0.9.4|~1.0",
"nesbot/carbon": "~1.20",
"phpunit/phpunit": "~4.8|~5.4|~6.1|~7.0"
},
"autoload": {
"psr-4": {
"Recca0120\\EloquentLogrotate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Recca0120\\EloquentLogrotate\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}