Skip to content

Commit

Permalink
Support Laravel 10 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored Mar 8, 2023
1 parent 7f8934f commit 1cc7196
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@
"name": "laravel-validation-rules/credit-card",
"description": "Validate credit card number, expiration date, cvc",
"type": "library",
"keywords": [ "laravel", "validation", "credit card", "validator" ],
"keywords": [
"laravel",
"validation",
"credit card",
"validator"
],
"require": {
"php": "7.*|8.*",
"illuminate/validation": "^5.5|^6.0|^7.0|^8.0|^9.0",
"illuminate/translation": "^5.5|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0"
"illuminate/validation": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/translation": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.5",
"friendsofphp/php-cs-fixer": "~2.5|^3.14",
"phpunit/phpunit": "6.2.*|^8.5.8|^9.3.3",
"orchestra/testbench": "^3.5|^4.0|^5.0"
"orchestra/testbench": "^3.5|^4.0|^5.0|^8.0"
},
"autoload": {
"psr-4": {
Expand All @@ -36,7 +41,7 @@
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
"preferred-install": "dist",
"sort-packages": true
}
}

0 comments on commit 1cc7196

Please sign in to comment.