Skip to content

Commit

Permalink
feat(chore) : migrate to 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Loyant committed Sep 19, 2024
1 parent 187a531 commit 93497e2
Show file tree
Hide file tree
Showing 4 changed files with 986 additions and 499 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ workflows:
- test:
filters:
branches:
only: /5\..*/
only: /7\..*/
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PHP Composer

on:
push:
branches: [ "5.x" ]
branches: [ "7.x" ]
pull_request:
branches: [ "5.x" ]
branches: [ "7.x" ]

permissions:
contents: read
Expand All @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.3
php-version: 7.4
tools: composer:v2

- name: Validate composer.json and composer.lock
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
"require-dev": {
"atoum/atoum": "^4.0||^4.1||^4.2",
"atoum/stubs": "^2.6",
"friendsofphp/php-cs-fixer": "^2.19||^3.64",
"phpbench/phpbench": "^1.1||^1.2",
"friendsofphp/php-cs-fixer": "^3.64",
"phpbench/phpbench": "^1.2||^1.3",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^9.6||^10.5||^11.3",
"squizlabs/php_codesniffer": "^3.10",
"vimeo/psalm": "^4.30||5.26"
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
Expand All @@ -45,7 +45,7 @@
"@unittest",
"@atoumtest"
],
"unittest": "XDEBUG_MODE=coverage ./vendor/bin/phpunit Tests/phpunit -c phpunit.xml.dist",
"unittest": "XDEBUG_MODE=coverage ./vendor/bin/phpunit Tests/phpunit --process-isolation -c phpunit.xml.dist",
"atoumtest": "XDEBUG_MODE=coverage ./vendor/bin/atoum -d Tests/atoum",
"bench": "./vendor/bin/phpbench run Tests/benchmark/ --report=default"
},
Expand Down
Loading

0 comments on commit 93497e2

Please sign in to comment.