Skip to content

Commit 48653be

Browse files
authored
Merge pull request #247 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents b7bea73 + f5edbdc commit 48653be

File tree

1 file changed

+60
-60
lines changed

1 file changed

+60
-60
lines changed

composer.json

Lines changed: 60 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
{
2-
"name": "dacastro4/laravel-gmail",
3-
"description": "Gmail API package for Laravel",
4-
"keywords": [
5-
"api",
6-
"laravel",
7-
"Gmail"
8-
],
9-
"license": "MIT",
10-
"authors": [
11-
{
12-
"name": "Daniel Castro",
13-
"email": "danielcastro04@gmail.com",
14-
"homepage": "https://danielcastro.dev"
15-
}
16-
],
17-
"require": {
18-
"php": "^7.4|^8.0",
19-
"google/apiclient": "^v2.12.6",
20-
"illuminate/auth": "~5.8|^6.0|^7.0|^8.0|^9.0",
21-
"illuminate/config": "~5.8|^6.0|^7.0|^8.0|^9.0",
22-
"illuminate/database": "~5.8|^6.0|^7.0|^8.0|^9.0",
23-
"illuminate/routing": "~5.8|^6.0|^7.0|^8.0|^9.0",
24-
"illuminate/session": "~5.8|^6.0|^7.0|^8.0|^9.0",
25-
"illuminate/support": "~5.8|^6.0|^7.0|^8.0|^9.0",
26-
"symfony/mime": "^5.4|^6.0",
27-
"ext-json": "*"
28-
},
29-
"require-dev": {
30-
"phpunit/phpunit": "^9.3",
31-
"mockery/mockery": "^1.0",
32-
"squizlabs/php_codesniffer": "~3.4",
33-
"orchestra/testbench": "^v4.18.0|^v5.20.0|^v6.25.0"
34-
},
35-
"autoload": {
36-
"psr-4": {
37-
"Dacastro4\\LaravelGmail\\": "src/"
38-
}
39-
},
40-
"autoload-dev": {
41-
"psr-4": {
42-
"Tests\\": "tests/"
43-
}
44-
},
45-
"extra": {
46-
"laravel": {
47-
"providers": [
48-
"Dacastro4\\LaravelGmail\\LaravelGmailServiceProvider"
49-
],
50-
"aliases": {
51-
"LaravelGmail": "Dacastro4\\LaravelGmail\\Facade\\LaravelGmail"
52-
}
53-
}
54-
},
55-
"config": {
56-
"preferred-install": "dist",
57-
"sort-packages": true,
58-
"optimize-autoloader": true
59-
},
60-
"minimum-stability": "dev",
61-
"prefer-stable": true
2+
"name": "dacastro4/laravel-gmail",
3+
"description": "Gmail API package for Laravel",
4+
"keywords": [
5+
"api",
6+
"laravel",
7+
"Gmail"
8+
],
9+
"license": "MIT",
10+
"authors": [
11+
{
12+
"name": "Daniel Castro",
13+
"email": "danielcastro04@gmail.com",
14+
"homepage": "https://danielcastro.dev"
15+
}
16+
],
17+
"require": {
18+
"php": "^7.4|^8.0",
19+
"google/apiclient": "^v2.12.6",
20+
"illuminate/auth": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
21+
"illuminate/config": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
22+
"illuminate/database": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
23+
"illuminate/routing": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
24+
"illuminate/session": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
25+
"illuminate/support": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
26+
"symfony/mime": "^5.4|^6.0",
27+
"ext-json": "*"
28+
},
29+
"require-dev": {
30+
"phpunit/phpunit": "^9.3",
31+
"mockery/mockery": "^1.0",
32+
"squizlabs/php_codesniffer": "~3.4",
33+
"orchestra/testbench": "^v4.18.0|^v5.20.0|^v6.25.0|^8.0"
34+
},
35+
"autoload": {
36+
"psr-4": {
37+
"Dacastro4\\LaravelGmail\\": "src/"
38+
}
39+
},
40+
"autoload-dev": {
41+
"psr-4": {
42+
"Tests\\": "tests/"
43+
}
44+
},
45+
"extra": {
46+
"laravel": {
47+
"providers": [
48+
"Dacastro4\\LaravelGmail\\LaravelGmailServiceProvider"
49+
],
50+
"aliases": {
51+
"LaravelGmail": "Dacastro4\\LaravelGmail\\Facade\\LaravelGmail"
52+
}
53+
}
54+
},
55+
"config": {
56+
"preferred-install": "dist",
57+
"sort-packages": true,
58+
"optimize-autoloader": true
59+
},
60+
"minimum-stability": "dev",
61+
"prefer-stable": true
6262
}

0 commit comments

Comments
 (0)