diff --git a/.gitignore b/.gitignore index fd0e45a..d5d46e2 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ composer.lock /assets/ /phpunit.xml.bak .phpunit.result.cache +.php_cs.cache diff --git a/composer.json b/composer.json index 515fc2a..bfde23c 100644 --- a/composer.json +++ b/composer.json @@ -17,16 +17,16 @@ } ], "require": { - "php": "^7.3|^8.0", + "php": "^8.0", "ext-json": "*", - "inertiajs/inertia-laravel": "^0.4.1", - "illuminate/support": "^7.0|^8.0", - "statamic/cms": "^3.1" + "inertiajs/inertia-laravel": "^0.6.0", + "illuminate/support": "^8.0|^9.0", + "statamic/cms": "^3.1|^3.2" }, "require-dev": { - "nunomaduro/collision": "^4.0|^5.1", - "orchestra/testbench": "^5.0|^6.0", - "phpunit/phpunit": "^8.0|^9.0", + "nunomaduro/collision": "^5.1|^6.0", + "orchestra/testbench": "^6.0", + "phpunit/phpunit": "^9.0", "roave/security-advisories": "dev-latest" }, "autoload": { @@ -50,6 +50,9 @@ } }, "config": { - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "pixelfear/composer-dist-plugin": true + } } }