Skip to content

Commit

Permalink
fix composer install
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard van Laak committed Oct 4, 2022
1 parent b2225f2 commit d99042c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ test-cs:

static:
docker run --rm -v $(DIR):/project -w /project jakzal/phpqa phpstan analyze -c .phpstan.neon

composer:
docker run --rm -v $(DIR):/project -w /project webdevops/php:7.2 composer install
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"license": "MIT",
"require": {
"php": ">=7.2",
"symfony/framework-bundle": "^3.4|^4.0|^5.0",
"symfony/framework-bundle": "^3.4|^4.0|^5.0|^6.0",
"twig/twig": "^1.41|^2.7|^3.0",
"symfony/deprecation-contracts": "^2.4"
"symfony/deprecation-contracts": "^2.4|^3.0"
},
"scripts": {
"test": "vendor/bin/simple-phpunit --testdox"
Expand All @@ -22,16 +22,16 @@
"psr-4": { "APY\\BreadcrumbTrailBundle\\": "src/" }
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0",
"symfony/phpunit-bridge": "^5.0|^6.0",
"nyholm/symfony-bundle-test": "^1.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"doctrine/doctrine-bundle": "^v1.0|^v2.0",
"symfony/twig-bundle": "^3.4|^4.0|^5.0"
"symfony/twig-bundle": "^3.4|^4.0|^5.0|^6.0"
},
"conflict": {
"doctrine/annotations": "< 1.7",
"symfony/framework-bundle": "<3.4.26 || >4 <4.1.12 || >4.2 <4.2.7",
"twig/twig": ">=2.0 || < 2.15.3"
"twig/twig": ">=2.0 <2.15.3"
},
"autoload-dev": {
"psr-4": { "APY\\BreadcrumbTrailBundle\\": "tests/" }
Expand Down

0 comments on commit d99042c

Please sign in to comment.