-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Switch to individual
illuminate/*
packages instead of `larav…
- Loading branch information
Showing
94 changed files
with
994 additions
and
420 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
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,27 @@ | ||
name: 'Install Tool' | ||
description: 'Install Tool (requires PHP to be installed first)' | ||
|
||
inputs: | ||
tool: | ||
description: "Tool to install." | ||
required: true | ||
type: string | ||
working-directory: | ||
description: "The directory where `composer.json` is located (default repository root)." | ||
required: false | ||
type: string | ||
default: "" | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Detect path | ||
id: path | ||
shell: bash | ||
working-directory: ${{ inputs.working-directory }} | ||
run: | | ||
echo "value=$(jq '.extra."bamarni-bin"."target-directory" // "vendor-bin"' -r -c composer.json)" >> $GITHUB_OUTPUT | ||
- name: Install | ||
uses: ramsey/composer-install@v3 | ||
with: | ||
working-directory: ${{ inputs.working-directory && inputs.working-directory || '.' }}/${{ steps.path.outputs.value }}/${{ inputs.tool }} |
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
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
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
{ | ||
"symbol-whitelist": [ | ||
"Composer\\InstalledVersions", | ||
"Laravel\\Scout\\Builder" | ||
"Laravel\\Scout\\Builder", | ||
"Illuminate\\Foundation\\Http\\FormRequest", | ||
"Illuminate\\Foundation\\Testing\\RefreshDatabase", | ||
"Illuminate\\Foundation\\Testing\\RefreshDatabaseState", | ||
"Illuminate\\Foundation\\Testing\\TestCase" | ||
] | ||
} |
Oops, something went wrong.