-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
65 lines (65 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "tomshaw/google-api",
"description": "A Laravel Google API Client.",
"keywords": [
"google",
"laravel",
"google-api",
"google-client",
"api-client"
],
"license": "MIT",
"authors": [
{
"name": "Tom Shaw",
"email": "tomshaw@tomshaw.us",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"google/apiclient": "2.15.0",
"illuminate/session": "^10.14|^11.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.10|^2.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^8.5|^9.0",
"pestphp/pest": "^2.8|^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1.1|^11.0"
},
"autoload": {
"psr-4": {
"TomShaw\\GoogleApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TomShaw\\GoogleApi\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --ansi --memory-limit=-1 --generate-baseline --allow-empty-baseline",
"test": "vendor/bin/pest",
"format": "vendor/bin/pint --config pint.json"
},
"extra": {
"laravel": {
"providers": [
"TomShaw\\GoogleApi\\Providers\\GoogleApiServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true,
"process-timeout": 600
}
}