-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: composer configuration & remove /vendor
add workflow for composer validation fix: composer install for php7 but update for php8
- Loading branch information
Showing
2,251 changed files
with
21,364 additions
and
213,082 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Validate Compoer dependencies | ||
# this workflows check composer dependency installation | ||
# using the commited composer.lock | ||
# validate on php7.3 and 8.2 | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- alpha | ||
- beta | ||
- V4-stable | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Validate dependencies php7.3 | ||
uses: php-actions/composer@v6 | ||
with: | ||
php_version: '7.3' | ||
command: validate | ||
args: --no-check-publish | ||
|
||
- name: Validate dependencies php8.2 | ||
uses: php-actions/composer@v6 | ||
with: | ||
php_version: '8.2' | ||
command: validate | ||
args: --no-check-publish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.