diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 313ee8c..d736925 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4] + php: [8.1, 8.2, 8.3, 8.4] env: ESB_CONSOLE_PORT: 8080 diff --git a/README.md b/README.md index af619c0..e8f0e97 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Webgriffe ESB is designed to use a single binary which is used as the main entry Requirements ------------ -* PHP 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 +* PHP 8.1, 8.2, 8.3, 8.4 * Beanstalk * Elasticsearch 7.* diff --git a/composer.json b/composer.json index 833b38e..2e1fd06 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0", + "php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0", "ext-pcntl": "*", "ext-json": "*", "ext-mbstring": "*", @@ -20,7 +20,7 @@ "amphp/beanstalk": "^0.3.2", "monolog/monolog": "^1.23", "dragonmantank/cron-expression": "^2.0", - "twig/twig": "^2.5", + "twig/twig": "^3.0", "nikic/fast-route": "^1.3", "amphp/http-server": "^2.0", "amphp/amp": "^2.5", @@ -66,13 +66,5 @@ "phpstan": "vendor/bin/phpstan analyse --no-progress -l max -c phpstan.neon src/", "phpunit": "vendor/bin/phpunit", "tests": ["@ecs", "@phpstan", "@phpunit"] - }, - "config": { - "audit": { - "ignore": { - "PKSA-yhcn-xrg3-68b1": "Needs upgrade to Twig 3.", - "PKSA-2wrf-1xmk-1pky": "Needs upgrade to Twig 3." - } - } } }