diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f4ebc1..06d0c7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ jobs: matrix: php: [7.3, 7.4, '8.0', 8.1] lib: + - { laravel: ^10.0 } - { laravel: ^9.0 } - { laravel: ^8.0 } - { laravel: ^7.0 } @@ -19,7 +20,10 @@ jobs: - { php: 8.1, lib: { laravel: ^7.0 } } - { php: 8.1, lib: { laravel: ^6.0 } } - { php: 8.1, lib: { laravel: ^6.0, flags: --prefer-lowest } } + - { php: 8.0, lib: { laravel: ^10.0 } } + - { php: 7.4, lib: { laravel: ^10.0 } } - { php: 7.4, lib: { laravel: ^9.0 } } + - { php: 7.3, lib: { laravel: ^10.0 } } - { php: 7.3, lib: { laravel: ^9.0 } } steps: diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 50f6631..1388274 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -9,6 +9,8 @@ filter: build: + image: default-bionic + nodes: analysis: tests: @@ -16,7 +18,7 @@ build: - php-scrutinizer-run environment: - php: '7.4' + php: '8.1.8' dependencies: before: diff --git a/README.md b/README.md index ae9ad8a..ba54da0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Call interactive artisan command using arbitrary stream. ## Requirements - PHP: `^7.3 || ^8.0` -- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0` +- Laravel: `^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0` - [guzzlehttp/psr7](https://github.com/guzzle/psr7): `^1.7` ## Installing diff --git a/composer.json b/composer.json index 91d704d..99c3299 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,8 @@ }, "require": { "php": "^7.3 || ^8.0", - "illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0", - "illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0", + "illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", + "illuminate/contracts": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", "guzzlehttp/psr7": "^1.7" }, "require-dev": {