Skip to content

Commit

Permalink
Merge pull request #9 from kos195/lumen-9-compatibility
Browse files Browse the repository at this point in the history
Upgrade dependencies to support Lumen 9
  • Loading branch information
kos195 authored Jul 19, 2022
2 parents 4492b4a + 36ee268 commit e7c78f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage
coverage.xml
.php_cs.cache
examples/lumen-app/vendor
.phpunit.result.cache
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
dist: precise

language: php

php:
- 7.3
- 8.0

before_install:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
Expand Down
19 changes: 7 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^8.0",
"illuminate/routing": "^8.0",
"beatlabs/prometheus_client_php": "dev-master"
"php": "^8.0",
"illuminate/support": "^9.0",
"illuminate/routing": "^9.0",
"beatlabs/prometheus_client_php": "dev-master#v0.9.4"
},
"repositories": [
{
Expand All @@ -25,15 +25,10 @@
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "2.*",
"orchestra/testbench": "^6.0"
"friendsofphp/php-cs-fixer": "^3.8",
"orchestra/testbench": "^7.5"
}
}

0 comments on commit e7c78f5

Please sign in to comment.