Skip to content

Commit

Permalink
Merge pull request #47 from coldic3/feature/update-composer-dependencies
Browse files Browse the repository at this point in the history
Update composer dependencies
  • Loading branch information
coldic3 authored Aug 23, 2024
2 parents a4cb19e + 4a1fbb9 commit b875f76
Show file tree
Hide file tree
Showing 77 changed files with 3,669 additions and 3,042 deletions.
1 change: 0 additions & 1 deletion .github/workflows/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
run: |
composer run-script static-analyze:code-style
composer run-script static-analyze:phpstan
composer run-script static-analyze:psalm
-
name: Execute unit tests
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/vendor/
/.php-cs-fixer.php
/.php-cs-fixer.cache
/.phpunit.cache
/phpunit.xml
/.phpunit.result.cache
/behat.yaml
Expand Down
56 changes: 28 additions & 28 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,29 @@
"lexik/jwt-authentication-bundle": "^2.18",
"nelmio/cors-bundle": "^2.2",
"phpstan/phpdoc-parser": "^1.16",
"symfony/asset": "6.2.*",
"symfony/console": "6.2.*",
"symfony/dotenv": "6.2.*",
"symfony/expression-language": "6.2.*",
"stof/doctrine-extensions-bundle": "^1.12",
"symfony/asset": "^6.4",
"symfony/console": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/expression-language": "^6.4",
"symfony/flex": "^2.2",
"symfony/framework-bundle": "6.2.*",
"symfony/messenger": "6.2.*",
"symfony/mime": "6.2.*",
"symfony/framework-bundle": "^6.4",
"symfony/messenger": "^6.4",
"symfony/mime": "^6.4",
"symfony/monolog-bundle": "^3.8",
"symfony/property-access": "6.2.*",
"symfony/property-info": "6.2.*",
"symfony/runtime": "6.2.*",
"symfony/security-bundle": "6.2.*",
"symfony/serializer": "6.2.*",
"symfony/twig-bundle": "6.2.*",
"symfony/uid": "6.2.*",
"symfony/validator": "6.2.*",
"symfony/yaml": "6.2.*"
"symfony/property-access": "^6.4",
"symfony/property-info": "^6.4",
"symfony/runtime": "^6.4",
"symfony/security-bundle": "^6.4",
"symfony/serializer": "^6.4",
"symfony/string": "^6.4",
"symfony/twig-bundle": "^6.4",
"symfony/uid": "^6.4",
"symfony/validator": "^6.4",
"symfony/yaml": "^6.4"
},
"require-dev": {
"api-platform/schema-generator": "^4.0",
"api-platform/schema-generator": "^5.0",
"behat/behat": "^3.12",
"friends-of-behat/symfony-extension": "^2.0",
"friendsofphp/php-cs-fixer": "^3.16",
Expand All @@ -47,16 +49,15 @@
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"symfony/browser-kit": "6.2.*",
"symfony/css-selector": "6.2.*",
"symfony/debug-bundle": "6.2.*",
"symfony/http-client": "6.2.*",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/debug-bundle": "^6.4",
"symfony/http-client": "^6.4",
"symfony/maker-bundle": "^1.44",
"symfony/phpunit-bridge": "6.2.*",
"symfony/stopwatch": "6.2.*",
"symfony/var-dumper": "6.2.*",
"symfony/web-profiler-bundle": "6.2.*",
"vimeo/psalm": "^4.29"
"symfony/phpunit-bridge": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/var-dumper": "^6.4",
"symfony/web-profiler-bundle": "^6.4"
},
"config": {
"optimize-autoloader": true,
Expand Down Expand Up @@ -107,7 +108,6 @@
"vendor/bin/php-cs-fixer fix --dry-run --config=.php-cs-fixer.test.dist.php"
],
"static-analyze:phpstan": ["vendor/bin/phpstan analyse"],
"static-analyze:psalm": ["vendor/bin/psalm"],
"test:unit": ["vendor/bin/phpunit --testsuite unit"],
"test:contract": ["vendor/bin/phpunit --testsuite contract"],
"test:behavioral": [
Expand All @@ -125,7 +125,7 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.2.*"
"require": "^6.4"
}
}
}
Loading

0 comments on commit b875f76

Please sign in to comment.