diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index 16fbe6d..47997d7 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -5,6 +5,7 @@ on: - develop - features/** - feature/** + - upgrade/** pull_request: branches: [ develop ] @@ -13,7 +14,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: [ '8.3', '8.2', '8.1', '8.0' ] + php-versions: [ '8.3', '8.2', '8.1' ] dependency-stability: [ 'prefer-stable','prefer-lowest' ] runs-on: ${{ matrix.operating-system }} @@ -22,7 +23,7 @@ jobs: name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install PHP versions uses: shivammathur/setup-php@v2 with: diff --git a/.github/workflows/php-lint.yml b/.github/workflows/php-lint.yml index 81d20f8..2579972 100644 --- a/.github/workflows/php-lint.yml +++ b/.github/workflows/php-lint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Validate composer.json and composer.lock @@ -25,6 +25,6 @@ jobs: run: composer run-script test - name: PHP Syntax Checker (Lint) - uses: StephaneBour/actions-php-lint@8.0 + uses: StephaneBour/actions-php-lint@8.2 with: dir: './src' diff --git a/.gitignore b/.gitignore index 8590ca2..469068e 100755 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ composer.lock vendor coverage .phpunit.result.cache +.phpunit.cache/ .idea .php_cs.cache .vscode diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fe5ddc..f80d464 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.0.0 - 2024-03-13 +- upgrading packages + ## 0.5.2 - 2024-03-12 - Updating hints for missing lang directory diff --git a/composer.json b/composer.json index 8066c2e..5158c34 100755 --- a/composer.json +++ b/composer.json @@ -21,23 +21,20 @@ } ], "require": { - "php": "^8.0|^8.1|^8.2", + "php": "^8.0|^8.1|^8.2|^8.3", "ext-json": "*", - "guzzlehttp/guzzle": "^7.0", - "illuminate/support": "v8.75.0|^9.0|^10.0|^11.0", - "nunomaduro/termwind": "^1.13|^2.0" + "guzzlehttp/guzzle": "^7.8", + "nunomaduro/termwind": "^1.15|^2.0" }, "require-dev": { - "doctrine/dbal": "^3.0", + "doctrine/dbal": "^3.0|^4.0", + "larastan/larastan": "^1.0.0|^2.0", "laravel/pint": "^1.4", - "nunomaduro/larastan": "^1.0.0|^2.0", - "orchestra/testbench": "^6.23.2|^7.0|^8.0|^9.0", - "pestphp/pest": "^1.22|^2.34", + "orchestra/testbench": "^7.0|^8.0|^9.0", + "pestphp/pest": "^2.34", "pestphp/pest-plugin-laravel": "^1.2|^2.3", - "phpunit/phpunit": "^9.5.10|^10.5", - "psalm/plugin-laravel": "^1.6.2", - "rector/rector": "^0.14.6|^1.0", - "vimeo/psalm": "^4.11|^5.22" + "phpunit/phpunit": "^10.5", + "rector/rector": "^0.14|^1.0" }, "autoload": { "psr-4": { diff --git a/phpstan.neon b/phpstan.neon index a897201..56a39b2 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,5 +1,5 @@ includes: - - ./vendor/nunomaduro/larastan/extension.neon + - ./vendor/larastan/larastan/extension.neon parameters: reportUnmatchedIgnoredErrors: false ignoreErrors: diff --git a/phpunit.xml.dist b/phpunit.xml.dist index c4fdcc3..1a71315 100755 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,9 +1,6 @@ - + - - src/ - @@ -21,4 +18,9 @@ + + + src/ + + diff --git a/phpunit.xml.dist.bak b/phpunit.xml.dist.bak index 2ad2830..c4fdcc3 100644 --- a/phpunit.xml.dist.bak +++ b/phpunit.xml.dist.bak @@ -1,32 +1,24 @@ - - - - tests - - - - - src/ - - - - - - - - - - - - + + + + src/ + + + + + + + + + + tests + + + + + + + +