diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4f906e9..cf71d63 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,16 +16,10 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.1, 8.2 ] - laravel: [ "^9.0", "^10.0", "^11.0" ] + php: [ 8.2 ] + laravel: [ "^10.0", "^11.0" ] stability: [ prefer-lowest, prefer-stable ] include: - - laravel: "^9.0" - testbench: "^7.0" - enum: "^5.0" - - laravel: "^9.0" - testbench: "^7.0" - enum: "^6.0" - laravel: "^10.0" testbench: "^8.0" enum: "^6.0" diff --git a/composer.json b/composer.json index 5e41a8c..8714bd7 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { - "name": "simplesquid/nova-enum-field", - "description": "A Laravel Nova field to add enums to resources.", - "keywords": [ + "name" : "simplesquid/nova-enum-field", + "description" : "A Laravel Nova field to add enums to resources.", + "keywords" : [ "simplesquid", "laravel", "nova", @@ -9,57 +9,57 @@ "enum", "nova-enum-field" ], - "homepage": "https://github.com/simplesquid/nova-enum-field", - "license": "MIT", - "authors": [ + "homepage" : "https://github.com/simplesquid/nova-enum-field", + "license" : "MIT", + "authors" : [ { - "name": "Matthew Poulter", - "email": "matthew.poulter@simplesquid.co.za", - "homepage": "https://simplesquid.co.za/", - "role": "Developer" + "name" : "Matthew Poulter", + "email" : "matthew.poulter@simplesquid.co.za", + "homepage" : "https://simplesquid.co.za/", + "role" : "Developer" } ], - "repositories": [ + "repositories" : [ { - "type": "composer", - "url": "https://nova.laravel.com" + "type" : "composer", + "url" : "https://nova.laravel.com" } ], - "require": { - "php": "^8.0", - "bensampo/laravel-enum": "^5.0 || ^6.0", - "illuminate/support": "^9.0 || ^10.0 || ^11.0", - "laravel/nova": "^4.0" + "require" : { + "php" : "^8.1", + "bensampo/laravel-enum" : "^5.0 || ^6.0", + "illuminate/support" : "^^10.0 || ^11.0", + "laravel/nova" : "^4.0" }, - "require-dev": { - "joshgaber/novaunit": "^3.1", - "laravel/pint": "^1.2", - "mockery/mockery": "^1.3.3", - "nunomaduro/collision": "^6.1 || ^7.0 || ^8.0", - "orchestra/testbench": "^7.0 || ^8.0 || ^9.0", - "phpunit/phpunit": "^10.0", - "symfony/var-dumper": "^6.0" + "require-dev" : { + "joshgaber/novaunit" : "^3.1", + "laravel/pint" : "^1.2", + "mockery/mockery" : "^1.3.3", + "nunomaduro/collision" : "^^7.0 || ^8.0", + "orchestra/testbench" : "^8.0 || ^9.0", + "phpunit/phpunit" : "^10.0", + "symfony/var-dumper" : "^6.0 || ^7.0" }, - "autoload": { - "psr-4": { - "SimpleSquid\\Nova\\Fields\\Enum\\": "src" + "autoload" : { + "psr-4" : { + "SimpleSquid\\Nova\\Fields\\Enum\\" : "src" } }, - "autoload-dev": { - "psr-4": { - "SimpleSquid\\Nova\\Fields\\Enum\\Tests\\": "tests" + "autoload-dev" : { + "psr-4" : { + "SimpleSquid\\Nova\\Fields\\Enum\\Tests\\" : "tests" } }, - "extra": { - "laravel": { - "providers": [] + "extra" : { + "laravel" : { + "providers" : [] } }, - "scripts": { - "test": "vendor/bin/phpunit --colors=always" + "scripts" : { + "test" : "vendor/bin/phpunit --colors=always" }, - "config": { - "sort-packages": true + "config" : { + "sort-packages" : true }, - "minimum-stability": "stable" + "minimum-stability" : "stable" }