forked from dacastro4/laravel-gmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.48 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
{
"name": "dacastro4/laravel-gmail",
"description": "Gmail API package for Laravel",
"keywords": [
"api",
"laravel",
"Gmail"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Castro",
"email": "[email protected]",
"homepage": "https://danielcastro.dev"
}
],
"require": {
"php": "^7.4|^8.0",
"google/apiclient": "^v2.12.6",
"illuminate/auth": "~5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/config": "~5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/database": "~5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/routing": "~5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/session": "~5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "~5.8|^6.0|^7.0|^8.0|^9.0",
"symfony/mime": "^5.4|^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "~3.4",
"orchestra/testbench": "^v4.18.0|^v5.20.0|^v6.25.0"
},
"autoload": {
"psr-4": {
"Dacastro4\\LaravelGmail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Dacastro4\\LaravelGmail\\LaravelGmailServiceProvider"
],
"aliases": {
"LaravelGmail": "Dacastro4\\LaravelGmail\\Facade\\LaravelGmail"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}