diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 274d66e..74aad03 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,8 +11,11 @@ jobs: fail-fast: false matrix: php: [8.1, 8.2, 8.3] - laravel: [10.*] + laravel: [10.*, 11.*] dependency-version: [prefer-lowest, prefer-stable] + exclude: + - php: 8.1 + laravel: 11.* name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index cd11895..7a1d185 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-poeditor-sync` will be documented in this file +## 1.0.1 - 2024-03-15 + +- Added: Laravel 11 support ([#27](https://github.com/nextapps-be/laravel-poeditor-sync/pull/27)) + ## 1.0.0 - 2024-01-23 - Changed: Modernize codebase ([#16](https://github.com/nextapps-be/laravel-poeditor-sync/pull/16)) diff --git a/composer.json b/composer.json index 1a8cef5..dd6abb1 100644 --- a/composer.json +++ b/composer.json @@ -19,16 +19,16 @@ "require": { "php": "^8.1|^8.2|^8.3", "guzzlehttp/guzzle": "^7.0", - "illuminate/filesystem": "^10.0", - "illuminate/http": "^10.0", - "illuminate/support": "^10.10", + "illuminate/filesystem": "^10.0|^11.0", + "illuminate/http": "^10.0|^11.0", + "illuminate/support": "^10.10|^11.0", "symfony/var-exporter": "^6.0" }, "require-dev": { "adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0", "friendsofphp/php-cs-fixer": "^3.0", - "orchestra/testbench": "^8.0", - "phpunit/phpunit": "^9.1", + "orchestra/testbench": "^8.0|^9.0", + "phpunit/phpunit": "^9.1|^10.0", "squizlabs/php_codesniffer": "^3.6" }, "autoload": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 067cd56..bd97400 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,21 +1,17 @@ - - - - src/ - - - - - - - - - - tests - - - - - + + + + tests + + + + + ./src + +