Skip to content

Commit

Permalink
Fix composer conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhelias committed Nov 3, 2023
1 parent 73bba09 commit 2cf3ed7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
include:
# Lowest Deps
- php: 8.1
symfony: 5.4.*
symfony: 6.2.*
coverage: 'none'
composer-flags: '--prefer-stable --prefer-lowest'
can-fail: false
# LTS with latest stable PHP
- php: latest
symfony: 5.4.*
symfony: 6.3.*
coverage: 'none'
composer-flags: '--prefer-stable'
can-fail: false
Expand All @@ -39,7 +39,7 @@ jobs:
can-fail: false
# Development release
- php: nightly
symfony: 6.4.*@dev
symfony: 7.0.*@dev
coverage: 'none'
composer-flags: ''
can-fail: true
Expand All @@ -61,7 +61,7 @@ jobs:
fail-fast: true

- name: Set Composer stability
if: matrix.symfony == '6.4.*@dev'
if: matrix.symfony == '7.0.*@dev'
run: "composer config minimum-stability dev"

- name: Get composer cache directory
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@
"doctrine/doctrine-bundle": "^2.7.1",
"doctrine/orm": "^2.14",
"paragonie/ciphersweet": "^3.0 || ^4.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.2",
"symfony/console": "^5.4 || ^6.2",
"symfony/dependency-injection": "^5.4 || ^6.2",
"symfony/deprecation-contracts": "^2.5 || ^3.2",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0",
"symfony/property-access": "^5.4 || ^6.0",
"symfony/property-info": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.2",
"symfony/http-kernel": "^5.4 || ^6.2",
"symfony/process": "^5.4 || ^6.2",
"symfony/property-access": "^5.4 || ^6.2",
"symfony/property-info": "^5.4 || ^6.2",
"symfony/service-contracts": "^2.2 || ^3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/browser-kit": "^5.4 || ^6.2",
"symfony/doctrine-bridge": "^6.2",
"symfony/phpunit-bridge": "^6.2.3",
"symfony/yaml": "^5.4 || ^6.0"
"symfony/yaml": "^5.4 || ^6.2"
},
"suggest": {
"phpdocumentor/reflection-docblock": "To use the PHPDoc"
Expand Down
3 changes: 3 additions & 0 deletions tests/App/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ imports:
framework:
annotations: false
secret: '123456789'
handle_all_throwables: true
http_method_override: false
router:
utf8: true
resource: '%kernel.project_dir%/routing.yaml'
strict_requirements: ~
test: true
php_errors:
log: true
profiler:
collect: false
cache:
Expand Down

0 comments on commit 2cf3ed7

Please sign in to comment.