diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bcc6822..2cb9140 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: [ "8.1", "8.2", "8.3" ] + php-versions: [ "8.2", "8.3", "8.4" ] steps: - name: Checkout uses: actions/checkout@v3 diff --git a/Makefile b/Makefile index 9e66d9d..bee761c 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ phpstan: .PHONY: codeception codeception: - ./vendor/bin/codecept run --env standalone + ./vendor/bin/codecept run --env standalone --coverage --coverage-xml --coverage-html .PHONY: ci ci: phpcs codeception phpstan @@ -25,6 +25,6 @@ ci: phpcs codeception phpstan clean: rm -Rf composer.lock rm -Rf ./vendor - find ./tests/_output/ -not -name .gitignore -not -name .gitkeep -delete + find ./tests/_output/ -not -name .gitignore -delete rm -Rf src/Generated/* rm -Rf src/Orm/* diff --git a/composer.json b/composer.json index 79d5f35..e445aff 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ } ], "require": { - "php": ">=8.1", + "php": ">=8.2", "fond-of-oryx/easy-api": "^1.0.0", "spryker/company-user": "^1.0.0 || ^2.0.0", "spryker/glue-application": "^1.0.0", @@ -31,7 +31,7 @@ "psr-4": { "FondOfOryx\\": "tests/FondOfOryx/", "Generated\\": "src/Generated/", - "Orm\\Zed\\": "src/Orm/Zed/" + "Orm\\": "src/Orm/" } }, "config": {