diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 090d486..89d3458 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ on: jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 10 strategy: @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -45,7 +45,7 @@ jobs: - name: PHPStan run: - vendor/bin/phpstan analyse --xdebug -vvv + vendor/bin/phpstan analyse -vvv - name: PHPUnit run: vendor/bin/phpunit --verbose @@ -70,7 +70,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4d6dfa6..fa70f4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ test:php: - composer normalize --dry-run --indent-size=4 --indent-style=space - vendor/bin/php-cs-fixer fix --diff --dry-run --verbose - vendor/bin/phpmd src xml phpmd.xml - - vendor/bin/phpstan analyse --xdebug -vvv + - vendor/bin/phpstan analyse -vvv - vendor/bin/phpunit --colors=never - phpdoc artifacts: diff --git a/composer.json b/composer.json index 7b79a76..a9e5dc5 100644 --- a/composer.json +++ b/composer.json @@ -30,30 +30,30 @@ ], "require": { "php": ">=8.1", - "aplus/autoload": "2.0.2", - "aplus/cache": "3.0.1", - "aplus/cli": "2.3.1", - "aplus/config": "3.0.2", - "aplus/crypto": "1.0.3", - "aplus/database": "3.2.3", - "aplus/database-extra": "3.0.1", - "aplus/date": "2.0.1", - "aplus/debug": "3.3.5", - "aplus/dev-commands": "1.0.0", - "aplus/email": "3.2.2", - "aplus/events": "1.4.2", - "aplus/factories": "1.0.1", - "aplus/helpers": "3.0.1", - "aplus/http": "5.2.4", - "aplus/http-client": "4.2.1", - "aplus/image": "2.2.3", - "aplus/language": "3.0.2", - "aplus/log": "3.0.1", - "aplus/mvc": "3.1.0", - "aplus/pagination": "3.3.0", - "aplus/routing": "3.4.2", - "aplus/session": "3.2.2", - "aplus/validation": "2.1.3" + "aplus/autoload": "~2.0.2", + "aplus/cache": "~3.0.1", + "aplus/cli": "~2.3.1", + "aplus/config": "~3.0.2", + "aplus/crypto": "~1.0.3", + "aplus/database": "~3.2.3", + "aplus/database-extra": "~3.0.1", + "aplus/date": "~2.0.1", + "aplus/debug": "~3.3.5", + "aplus/dev-commands": "~1.0.0", + "aplus/email": "~3.2.3", + "aplus/events": "~1.4.2", + "aplus/factories": "~1.0.1", + "aplus/helpers": "~3.0.1", + "aplus/http": "~5.2.4", + "aplus/http-client": "~4.2.2", + "aplus/image": "~2.2.3", + "aplus/language": "~3.0.2", + "aplus/log": "~3.0.1", + "aplus/mvc": "~3.1.0", + "aplus/pagination": "~3.3.0", + "aplus/routing": "~3.4.2", + "aplus/session": "~3.2.2", + "aplus/validation": "~2.1.3" }, "require-dev": { "ext-xdebug": "*", diff --git a/src/Aplus.php b/src/Aplus.php index 4b630de..62af973 100644 --- a/src/Aplus.php +++ b/src/Aplus.php @@ -19,5 +19,5 @@ final class Aplus * * @var string */ - public const VERSION = '22.0.7'; + public const VERSION = '22.0.8'; }