-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from softonic/Laravel-8-support
Laravel 8 support
- Loading branch information
Showing
4 changed files
with
28 additions
and
25 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
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,19 +1,31 @@ | ||
version: '3.6' | ||
version: "3.7" | ||
|
||
services: | ||
test: | ||
php: | ||
volumes: | ||
- ./:/app | ||
image: ricc/composer-prestissimo:latest | ||
command: composer run test | ||
image: composer:2.0 | ||
|
||
fixcs: | ||
install: | ||
volumes: | ||
- ./:/app | ||
image: ricc/composer-prestissimo:latest | ||
command: composer run fix-cs | ||
image: composer:2.0 | ||
command: composer install | ||
|
||
phpunit: | ||
volumes: | ||
- ./:/app | ||
image: composer:2.0 | ||
command: composer phpunit | ||
|
||
psysh: | ||
test: | ||
volumes: | ||
- ./:/app | ||
image: composer:2.0 | ||
command: composer run tests | ||
|
||
fixcs: | ||
volumes: | ||
- ./:/app | ||
image: ricc/psysh:latest | ||
image: composer:2.0 | ||
command: composer run fix-cs |