Skip to content

Commit

Permalink
Merge pull request #1862 from hydephp/improve-monorepo-composer
Browse files Browse the repository at this point in the history
Improved junctioned Composer package version requirements
  • Loading branch information
caendesilva authored Jul 16, 2024
2 parents 352c461 + 8c806a9 commit 97acdcb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4

- name: Validate composer.json and composer.lock
run: composer validate --strict
run: composer validate --strict --no-check-all

- name: Cache Composer packages
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4

- name: Validate composer.json and composer.lock
run: composer validate --strict
run: composer validate --strict --no-check-all

- name: Cache Composer packages
id: composer-cache
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
],
"require": {
"php": "^8.1",
"hyde/framework": "self.version",
"hyde/publications": "self.version",
"hyde/ui-kit": "self.version",
"hyde/framework": "*",
"hyde/publications": "*",
"hyde/ui-kit": "*",
"laravel-zero/framework": "^10.0"
},
"require-dev": {
"desilva/psalm-coverage": "dev-master",
"driftingly/rector-laravel": "^0.14.1",
"hyde/monorepo-dev-tools": "self.version",
"hyde/realtime-compiler": "self.version",
"hyde/testing": "self.version",
"hyde/monorepo-dev-tools": "*",
"hyde/realtime-compiler": "*",
"hyde/testing": "*",
"jetbrains/phpstorm-attributes": "^1.0",
"laravel/tinker": "^2.7",
"pestphp/pest-plugin-type-coverage": "^2.8",
Expand Down
10 changes: 2 additions & 8 deletions composer.lock

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

0 comments on commit 97acdcb

Please sign in to comment.