Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.next - Upgraded to CakePHP 4 #48

Merged
merged 10 commits into from
May 7, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update docs
  • Loading branch information
skie committed Apr 27, 2019
commit b19e05bb5d271a4452557b1bc4a5394a346c30f5
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 5.6
- 7.1
- 7.2

Expand All @@ -20,29 +19,30 @@ matrix:
fast_finish: true

include:
- php: 7.3
env: COVERAGE=1 DEFAULT=0

- php: 7.3
env: PHPCS=1 DEFAULT=0

- php: 7.3
env: PHPSTAN=1 DEFAULT=0

before_script:
- if [[ $TRAVIS_PHP_VERSION != 7.3 ]]; then phpenv config-rm xdebug.ini; fi

- composer install --prefer-dist --no-interaction

- if [ $DB = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi
- if [ $DB = 'pgsql' ]; then psql -c 'CREATE DATABASE cakephp_test;' -U postgres; fi

- if [[ $PHPSTAN = 1 ]]; then composer stan-setup; fi

script:
- if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION != 7.3 ]]; then composer test; fi
- if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.3 ]]; then composer coverage-test; fi

- if [[ $DEFAULT = 1 ]]; then composer test; fi
- if [[ $COVERAGE = 1 ]]; then composer coverage-test; fi
- if [[ $PHPCS = 1 ]]; then composer cs-check; fi

- if [[ $PHPSTAN = 1 ]]; then composer stan; fi

after_success:
- if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then bash <(curl -s https://codecov.io/bash); fi
- if [[ $COVERAGE = 1 ]]; then bash <(curl -s https://codecov.io/bash); fi

notifications:
email: false
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ Versions and branches

| CakePHP | CakeDC Enum Plugin | Tag | Notes |
| :-------------: | :------------------------: | :--: | :---- |
| ^3.6 | [master](https://github.com/cakedc/enum/tree/master) | 1.4.0 | stable |
| ^3.6 | [develop](https://github.com/cakedc/enum/tree/develop) | - | unstable |
| ^3.7 | [master](https://github.com/cakedc/enum/tree/master) | 1.5.0 | stable |
| ^3.7 | [develop](https://github.com/cakedc/enum/tree/develop) | - | unstable |
| ^3.6 | [master](https://github.com/cakedc/enum/tree/1.4.0) | 1.4.0 | stable |
| 3.1 - 3.5 | | 1.3.0 | stable |


Expand Down