-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Laravel 11.x support - update dependencies, to work with Laravel version 11.x - update README.md file - migrate from TravisCI to CircleCI
- Loading branch information
1 parent
51c9f55
commit 4a94744
Showing
4 changed files
with
39 additions
and
15 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,32 @@ | ||
# This config was automatically generated from your source code | ||
# Stacks detected: deps:php:. | ||
version: 2.1 | ||
orbs: | ||
php: circleci/php@1 | ||
jobs: | ||
test-php: | ||
# Install php packages and run tests | ||
docker: | ||
- image: cimg/php:8.2-node | ||
steps: | ||
- checkout | ||
- php/install-packages | ||
- run: | ||
name: run tests | ||
command: ./vendor/bin/phpunit | ||
deploy: | ||
# This is an example deploy job, not actually used by the workflow | ||
docker: | ||
- image: cimg/base:stable | ||
steps: | ||
# Replace this with steps to deploy to users | ||
- run: | ||
name: deploy | ||
command: '#e.g. ./deploy.sh' | ||
workflows: | ||
build-and-test: | ||
jobs: | ||
- test-php | ||
# - deploy: | ||
# requires: | ||
# - test-php |
This file was deleted.
Oops, something went wrong.
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