generated from grosv/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
49 lines (49 loc) · 1.17 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
40
41
42
43
44
45
46
47
48
49
{
"name": "grosv/eloquent-sheets",
"description": "Eloquent models backed by Google Sheets",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ed Grosvenor",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"illuminate/support": ">=6.0",
"revolution/laravel-google-sheets": "^5.0",
"calebporzio/sushi": "^2.0",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^5.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"Grosv\\EloquentSheets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"App\\": "vendor/orchestra/testbench-core/laravel/app"
}
},
"extra": {
"laravel": {
"providers": "Grosv\\EloquentSheets\\EloquentSheetsProvider"
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:unit": "phpunit",
"test": [
"@lint",
"@test:unit"
]
}
}