Skip to content

Commit e7c78f5

Browse files
authored
Merge pull request #9 from kos195/lumen-9-compatibility
Upgrade dependencies to support Lumen 9
2 parents 4492b4a + 36ee268 commit e7c78f5

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ coverage
66
coverage.xml
77
.php_cs.cache
88
examples/lumen-app/vendor
9+
.phpunit.result.cache

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
dist: precise
2-
31
language: php
42

53
php:
6-
- 7.3
4+
- 8.0
75

86
before_install:
97
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

composer.json

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
}
99
],
1010
"require": {
11-
"php": "^7.3|^8.0",
12-
"illuminate/support": "^8.0",
13-
"illuminate/routing": "^8.0",
14-
"beatlabs/prometheus_client_php": "dev-master"
11+
"php": "^8.0",
12+
"illuminate/support": "^9.0",
13+
"illuminate/routing": "^9.0",
14+
"beatlabs/prometheus_client_php": "dev-master#v0.9.4"
1515
},
1616
"repositories": [
1717
{
@@ -25,15 +25,10 @@
2525
"Tests\\": "tests/"
2626
}
2727
},
28-
"extra": {
29-
"branch-alias": {
30-
"dev-master": "1.0-dev"
31-
}
32-
},
3328
"require-dev": {
34-
"phpunit/phpunit": "^8.0",
29+
"phpunit/phpunit": "^9.5",
3530
"mockery/mockery": "^1.0",
36-
"friendsofphp/php-cs-fixer": "2.*",
37-
"orchestra/testbench": "^6.0"
31+
"friendsofphp/php-cs-fixer": "^3.8",
32+
"orchestra/testbench": "^7.5"
3833
}
3934
}

0 commit comments

Comments
 (0)