forked from highsolutions/eloquent-sequence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.13 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
39
{
"name": "highsolutions/eloquent-sequence",
"description": "A Laravel package for easy creation and management sequence support for Eloquent models with elastic configuration.",
"keywords": ["laravel", "sequence", "eloquent", "model", "order"],
"authors": [
{
"name": "HighSolutions",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.1.3",
"illuminate/support": "5.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench" : "3.*",
"phpunit/phpunit": "6.*|7.*"
},
"autoload": {
"psr-4": {
"HighSolutions\\EloquentSequence\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HighSolutions\\EloquentSequence\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"component": "package",
"frameworks": ["Laravel 5.0", "Laravel 5.1", "Laravel 5.2", "Laravel 5.3", "Laravel 5.4", "Laravel 5.5", "Laravel 5.6", "Laravel 5.7"]
},
"minimum-stability": "stable"
}