This commit is contained in:
FutureMatt 2020-09-15 22:27:07 +00:00 committed by GitHub
commit bb3014b7cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 11 deletions

View file

@ -1,11 +1,9 @@
language: php language: php
php: php:
- 5.6
- 7.0
- 7.1
- 7.2 - 7.2
- 7.3 - 7.3
- 7.4
before_install: before_install:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

View file

@ -1,5 +1,5 @@
{ {
"name": "superbalist/laravel-prometheus-exporter", "name": "futurematt/laravel-prometheus-exporter",
"description": "A prometheus exporter for Laravel", "description": "A prometheus exporter for Laravel",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
@ -9,10 +9,10 @@
} }
], ],
"require": { "require": {
"php": ">=5.6.0", "php": ">=7.2.0",
"illuminate/support": "^5.3 || ^6.0 || ^7.0", "illuminate/support": "^5.3 || ^6.0 || ^7.0 || ^8.0",
"illuminate/routing": "^5.3 || ^6.0 || ^7.0", "illuminate/routing": "^5.3 || ^6.0 || ^7.0 || ^8.0",
"jimdo/prometheus_client_php": "^0.9.0" "endclothing/prometheus_client_php": "^1.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@ -34,7 +34,7 @@
} }
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^5.5", "phpunit/phpunit": "^8",
"mockery/mockery": "^0.9.5" "mockery/mockery": "^1.3"
} }
} }

View file

@ -8,7 +8,6 @@
convertWarningsToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" processIsolation="false"
stopOnFailure="false" stopOnFailure="false"
syntaxCheck="true"
verbose="true" verbose="true"
> >
<testsuites> <testsuites>