Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none # default is xdebug
extensions: mbstring, uuid # needed by phpunit

Expand All @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none # default is xdebug
extensions: mbstring, uuid # needed by phpunit

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none # default is xdebug
extensions: mbstring, uuid # needed by phpunit

Expand Down
6 changes: 2 additions & 4 deletions assets/controllers.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
"turbo-core": {
"enabled": true,
"fetch": "eager"
}
},
"@symfony/ux-turbo-mercure": {
"turbo-stream": {
},
"mercure-turbo-stream": {
"enabled": true,
"fetch": "eager"
}
Expand Down
38 changes: 14 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,42 +8,30 @@
"email": "j.mikes@me.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/janmikes/psr7"
},
{
"type": "vcs",
"url": "https://github.com/janmikes/Client"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1.0",
"php": ">=8.2.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-uuid": "*",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.9",
"dragonmantank/cron-expression": "^3.1",
"guzzlehttp/psr7": "dev-fix-missing-uri-throws-annotation as 2.2",
"guzzlehttp/psr7": "^2.5",
"jetbrains/phpstorm-attributes": "^1.0",
"knplabs/github-api": "^3.7",
"knplabs/knp-time-bundle": "^1.16",
"lcobucci/clock": "^2.0",
"lorisleiva/cron-translator": "^0.3.0",
"m4tthumphrey/php-gitlab-api": "11.4.x-dev as 11.4.1",
"lcobucci/clock": "^3.0",
"lorisleiva/cron-translator": "^0.4",
"m4tthumphrey/php-gitlab-api": "^11.10.0",
"monolog/monolog": "^3.0",
"nette/utils": "^3.2",
"nette/utils": "^4.0",
"nyholm/psr7": "^1.3",
"phpdocumentor/reflection-docblock": "^5.2",
"psr/log": "^3.0",
"ramsey/uuid": "^4.2",
"sensio/framework-extra-bundle": "^6.1",
"sentry/sentry-symfony": "^4.2",
"symfony/asset": "^6.1",
"symfony/config": "^6.1",
Expand Down Expand Up @@ -73,14 +61,14 @@
"symfony/security-csrf": "^6.1",
"symfony/serializer": "^6.1",
"symfony/slack-notifier": "^6.1",
"symfony/stimulus-bundle": "^2.10",
"symfony/string": "^6.1",
"symfony/translation": "^6.1",
"symfony/twig-bundle": "^6.1",
"symfony/ux-turbo": "^2.1",
"symfony/ux-turbo-mercure": "^2.1",
"symfony/validator": "^6.1",
"symfony/web-link": "^6.1",
"symfony/webpack-encore-bundle": "^1.14",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/yaml": "^6.1",
"thecodingmachine/safe": "^2.0",
"twig/extra-bundle": "^3.0",
Expand All @@ -97,15 +85,16 @@
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.17.6",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/debug-bundle": "^6.0",
"symfony/stopwatch": "^6.0",
"symfony/var-dumper": "^6.0",
"symfony/web-profiler-bundle": "^6.0",
"symplify/config-transformer": "^11.0"
"symplify/config-transformer": "^12.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -143,7 +132,7 @@
"config-dir": "src/Infrastructure/Symfony/Config",
"symfony": {
"allow-contrib": true,
"require": "6.1.*"
"require": "6.3.*"
}
},
"replace": {
Expand All @@ -168,7 +157,8 @@
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
"symfony/runtime": true,
"php-http/discovery": true
}
}
}
Loading