Skip to content

Commit

Permalink
fix after split
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoiriert committed Jun 30, 2024
1 parent b03f16e commit df3a272
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/after_splitting_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: 'Composer Setup'
run: |
composer install --no-progress
vendor-bin/monorepo/vendor/bin/monorepo-builder localize-composer-paths
vendor-bin/monorepo/vendor/bin/monorepo-builder localize-composer-paths composer.json
cd packages/${{ matrix.package_name }}
composer update --no-progress
Expand Down
76 changes: 38 additions & 38 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
}
],
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mongodb": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"aws/aws-sdk-php": "^3.171",
"doctrine/common": "^3.1",
"doctrine/data-fixtures": "^1.5",
Expand All @@ -18,20 +25,13 @@
"doctrine/orm": "^2.11",
"doctrine/persistence": "^2.2 || ^3.0",
"dragonmantank/cron-expression": "^3.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mongodb": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"fidry/cpu-core-counter": "^1.1",
"friendsofphp/php-cs-fixer": "^3.13",
"guzzlehttp/psr7": "^1.8 || ^2.0",
"jms/serializer": "^3.11",
"jms/serializer-bundle": "^5.4.0",
"knplabs/doctrine-behaviors": "*",
"nesbot/carbon": "^2.0",
"php": ">=8.1",
"phpdocumentor/reflection-docblock": "^5.2",
"phpunit/phpunit": "^10.0",
"psr/http-message": "^1.0",
Expand Down Expand Up @@ -74,6 +74,7 @@
"twig/twig": "^3.3"
},
"require-dev": {
"ext-pcntl": "*",
"aws/aws-sdk-php-symfony": "^2.2",
"bamarni/composer-bin-plugin": "^1.4",
"colinodell/psr-testlogger": "^1.1",
Expand All @@ -84,7 +85,6 @@
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/sql-formatter": "^1.1",
"endroid/qr-code": "^5.0",
"ext-pcntl": "*",
"firebase/php-jwt": "^6.1",
"monolog/monolog": "^3.5.0",
"nelmio/cors-bundle": "^2.0",
Expand Down Expand Up @@ -167,10 +167,9 @@
"doctrine/data-fixtures": "<1.5.2",
"guzzlehttp/guzzle": "<6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"packages/core/functions.php"
],
"psr-4": {
"Draw\\Bundle\\FrameworkExtraBundle\\": "packages/framework-extra-bundle/",
"Draw\\Bundle\\SonataExtraBundle\\": "packages/sonata-extra-bundle/",
Expand Down Expand Up @@ -198,7 +197,10 @@
"Draw\\Contracts\\": "packages/contracts/",
"Draw\\DoctrineExtra\\": "packages/doctrine-extra/",
"Draw\\Fixer\\": "packages/fixer/"
}
},
"files": [
"packages/core/functions.php"
]
},
"autoload-dev": {
"psr-4": {
Expand All @@ -215,8 +217,8 @@
"cweagans/composer-patches": true
},
"symfony": {
"id": "01CAD2CSWYZBBNJDXQR6BP23MR",
"allow-contrib": true,
"id": "01CAD2CSWYZBBNJDXQR6BP23MR",
"require": "^6.4.0"
}
},
Expand Down Expand Up @@ -246,23 +248,24 @@
"draw:open-api:install-sandbox %PUBLIC_DIR%/open-api/sandbox --tag v3.52.5": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"test": [
"@test:reset",
"@test:run"
"linter": [
"@linter:php-cs-fixer",
"@linter:phpstan"
],
"test:run": [
"linter:php-cs-fixer": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
"vendor/bin/php-cs-fixer fix --allow-risky=yes -v"
],
"test:run:coverage": [
"linter:phpstan": [
"vendor/bin/phpstan analyse"
],
"phpstan:generate-baseline": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit --coverage-html ./tmp/phpunit/report"
"vendor/bin/phpstan analyse --generate-baseline"
],
"test:reset": [
"@test:database:setup",
"php bin/console doctrine:fixtures:load --no-interaction",
"php bin/console draw:entity-migrator:setup --no-interaction",
"php bin/console draw:application:update-deployed-version --no-interaction"
"test": [
"@test:reset",
"@test:run"
],
"test:database:setup": [
"bin/console doctrine:database:drop --if-exists --no-interaction --force --env=test",
Expand All @@ -276,22 +279,19 @@
"bin/console draw:doctrine:mysql-import-file ./data/sql/truncate.sql --no-interaction --env=test -vvv",
"bin/console draw:doctrine:mysql-dump ./data/sql/dump.sql --no-interaction --env=test"
],
"linter": [
"@linter:php-cs-fixer",
"@linter:phpstan"
"test:reset": [
"@test:database:setup",
"php bin/console doctrine:fixtures:load --no-interaction",
"php bin/console draw:entity-migrator:setup --no-interaction",
"php bin/console draw:application:update-deployed-version --no-interaction"
],
"linter:php-cs-fixer": [
"test:run": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/php-cs-fixer fix --allow-risky=yes -v"
],
"linter:phpstan": [
"vendor/bin/phpstan analyse"
"vendor/bin/phpunit"
],
"phpstan:generate-baseline": [
"test:run:coverage": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpstan analyse --generate-baseline"
"vendor/bin/phpunit --coverage-html ./tmp/phpunit/report"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit df3a272

Please sign in to comment.