-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update dependencies - Update publish.yml - Removes support for versions older than PHP 8.0 - Removes support for versions older than Laravel 9
- Loading branch information
1 parent
3c715a3
commit 5ed64a4
Showing
8 changed files
with
67 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG PHP_VERSION="7.3" | ||
ARG PHP_VERSION="8.1" | ||
|
||
FROM php:${PHP_VERSION}-cli | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,36 @@ | ||
{ | ||
"name": "arquivei/laravel-prometheus-exporter", | ||
"description": "A Prometheus exporter for Laravel and Lumen", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Arquivei" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.2.5 || ^8.0", | ||
"illuminate/support": "^6.0 || ^7.0 || ^8.0", | ||
"illuminate/routing": "^6.0 || ^7.0 || ^8.0", | ||
"promphp/prometheus_client_php": "^2.2.1", | ||
"guzzlehttp/guzzle": "^6.3 || ^7.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Arquivei\\LaravelPrometheusExporter\\": "src/", | ||
"Arquivei\\LaravelPrometheusExporter\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^8.0 || ^9.0", | ||
"mockery/mockery": "^1.3.3", | ||
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0" | ||
"name": "arquivei/laravel-prometheus-exporter", | ||
"description": "A Prometheus exporter for Laravel and Lumen", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Arquivei" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0 || ^8.1", | ||
"guzzlehttp/guzzle": "^7.4.2", | ||
"illuminate/routing": "^9.0", | ||
"illuminate/support": "^9.0", | ||
"promphp/prometheus_client_php": "^2.6.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5.20", | ||
"mockery/mockery": "^1.5.0", | ||
"orchestra/testbench": "^7.5.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Arquivei\\LaravelPrometheusExporter\\": "src/", | ||
"Arquivei\\LaravelPrometheusExporter\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters