Skip to content

Commit af40103

Browse files
committed
Composer changes for Laravel 9
1 parent 8802719 commit af40103

File tree

2 files changed

+16
-23
lines changed

2 files changed

+16
-23
lines changed

.travis.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,10 @@ cache:
66
- $HOME/.composer/cache/files
77

88
php:
9-
- 7.2
10-
- 7.3
11-
- 7.4
129
- 8.0
1310

1411
env:
15-
- LARAVEL_VERSION=7.x-dev TESTBENCH=5.x-dev
16-
- LARAVEL_VERSION=8.x-dev TESTBENCH=6.x-dev
17-
18-
jobs:
19-
exclude:
20-
- php: 7.2
21-
env: LARAVEL_VERSION=8.x-dev TESTBENCH=6.x-dev
12+
- LARAVEL_VERSION=9.x-dev TESTBENCH=6.x-dev
2213

2314
before_install:
2415
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini

composer.json

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,25 @@
99
"minimum-stability": "dev",
1010
"homepage": "https://github.com/jdavidbakr/MailTracker",
1111
"license": "MIT",
12-
"authors": [{
13-
"name": "J David Baker",
14-
"email": "me@jdavidbaker.com",
15-
"homepage": "http://www.jdavidbaker.com",
16-
"role": "Developer"
17-
}],
12+
"authors": [
13+
{
14+
"name": "J David Baker",
15+
"email": "me@jdavidbaker.com",
16+
"homepage": "http://www.jdavidbaker.com",
17+
"role": "Developer"
18+
}
19+
],
1820
"require": {
19-
"php": ">=7.2.0",
20-
"illuminate/support": "~7.0|~8.0",
21-
"guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
21+
"php": "^8.0",
22+
"illuminate/support": "~9.0",
23+
"guzzlehttp/guzzle": "^7.0.1",
2224
"aws/aws-php-sns-message-validator": "^1.1",
2325
"aws/aws-sdk-php": "^3.133"
2426
},
2527
"require-dev": {
26-
"phpunit/phpunit": "~8.0",
27-
"orchestra/testbench": "~5.0|~6.0",
28-
"mockery/mockery": "^1.1"
28+
"phpunit/phpunit": "^9.5.10",
29+
"orchestra/testbench": "~6.0",
30+
"mockery/mockery": "^1.4.4"
2931
},
3032
"suggest": {
3133
"fedeisas/laravel-mail-css-inliner": "Automatically inlines CSS into all outgoing mail."
@@ -50,4 +52,4 @@
5052
]
5153
}
5254
}
53-
}
55+
}

0 commit comments

Comments
 (0)