Skip to content

Commit

Permalink
Drop support for PHP 7.*
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitpokhrel committed Feb 17, 2024
1 parent 653fe37 commit b66f55a
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@
"license": "MIT",
"authors": [
{
"name": "Ankit Pokhrel",
"email": "hello@ankit.pl"
"name": "Ankit P.",
"email": "oss@ankit.pl"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"nesbot/carbon": "^1.26.3 || ^2.0",
"predis/predis": "^1.1 || ^2.0",
"guzzlehttp/guzzle": "^7.2",
"nesbot/carbon": "^2.67 || ^3.0",
"predis/predis": "^2.0.3",
"ramsey/uuid": "^3.7 || ^4.0",
"symfony/console": "^5.0 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.0.7 || ^6.0 || ^7.0",
"symfony/mime": "^5.0.9 || ^6.0 || ^7.0"
"symfony/console": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/mime": "^6.0 || ^7.0"
},
"require-dev": {
"ext-pcntl": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.3.4 || ^1.4.2",
"phpunit/phpunit": "^8.5.19 || ^10.0"
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
Expand All @@ -39,7 +39,10 @@
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"scripts": {
"test": "xdebug disable && vendor/bin/phpunit",
Expand Down

0 comments on commit b66f55a

Please sign in to comment.