Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
"homepage": "https://github.com/ipinfo/ipinfolaravel",
"keywords": ["Laravel", "ipinfolaravel"],
"require": {
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"ipinfo/ipinfo": "^3.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpunit/phpunit": "^12.0",
"mockery/mockery": "^1.4.2",
"orchestra/testbench": "^8.36",
"sempro/phpunit-pretty-print": "^1.3.0",
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sempro/phpunit-pretty-print was used nowhere so I removed it, it's also not maintained anymore. It doesn't even support Laravel 10.

"orchestra/testbench": "^10.6",
"squizlabs/php_codesniffer": "^3.5.8"
},
"autoload": {
Expand All @@ -37,7 +36,7 @@
"scripts": {
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src config",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src config",
"test": "phpunit --colors=always --coverage-html=coverage"
Comment thread
silvanocerza marked this conversation as resolved.
"test": "phpunit --colors=always"
},
"extra": {
"laravel": {
Expand Down
Loading