Skip to content

Commit

Permalink
Merge pull request #25 from Filefabrik/v9999
Browse files Browse the repository at this point in the history
bug was 
Run composer require --no-suggest --no-progress --no-interaction --prefer-dist --update-with-all-dependencies "laravel/framework:^11.0" "orchestra/testbench:^9.0"
You are using the deprecated option "--no-suggest". It has no effect and will break in Composer 3.
orchestra/testbench is currently present in the require-dev key and you ran the command without the --dev flag, which will move it to the require key.
./composer.json has been updated
  • Loading branch information
Filefabrik authored Aug 21, 2024
2 parents b6b75a0 + 9b9ec05 commit 5000618
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php-cs-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
env:
COMPOSER_DISCARD_CHANGES: true
run: composer require --no-suggest --no-progress --no-interaction --prefer-dist --update-with-all-dependencies "laravel/framework:^11.0" "orchestra/testbench:^9.0"
run: composer require --no-suggest --no-progress --no-interaction --prefer-dist --update-with-all-dependencies "laravel/framework:^11.0"

#- name: Run PHP CS Fixer
# run: ./vendor/bin/php-cs-fixer fix --diff --dry-run
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"filefabrik/bootraiser": "~v2.0",
"illuminate/support": "^11",
"laravel/framework": "^11.0",
"laravel/prompts": "^v0.1",
"orchestra/testbench": "^9.0"
"laravel/prompts": "^v0.1"
},
"require-dev": {
"ext-json": "*",
Expand All @@ -37,7 +36,9 @@
"pestphp/pest-plugin-drift": "^2.6",
"pestphp/pest-plugin-laravel": "^2.3",
"phpunit/phpunit": "^9.5|^10.5",
"phpstan/phpstan": "@stable"
"phpstan/phpstan": "@stable",

"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 5000618

Please sign in to comment.