-
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.
* Reworked mapper to support any class tree, no naming strategy used * Some tests and refactor * Fixed exceptions * Updated readme * Tested null array * Added CI * Removed nightly php support * Fixes Co-authored-by: Dimannn <[email protected]>
- Loading branch information
1 parent
283bd52
commit 2d6af60
Showing
9 changed files
with
332 additions
and
127 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,36 @@ | ||
dist: trusty | ||
sudo: false | ||
language: php | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
|
||
php: | ||
- 7.4 | ||
|
||
install: | ||
- travis_retry composer self-update | ||
- travis_retry composer install --prefer-dist | ||
|
||
script: ./vendor/bin/phpunit | ||
|
||
jobs: | ||
allow_failures: | ||
- stage: Security | ||
include: | ||
- stage: Stan | ||
php: 7.4 | ||
script: ./vendor/bin/phpstan analyze src -l 8 --memory-limit=512m | ||
|
||
- stage: Security | ||
php: 7.4 | ||
script: ./vendor/bin/security-checker security:check | ||
|
||
- stage: Code Style | ||
php: 7.4 | ||
script: | ||
- composer show squizlabs/php_codesniffer | ||
- composer show doctrine/coding-standard | ||
- composer show slevomat/coding-standard | ||
- ./vendor/bin/phpcs |
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
Oops, something went wrong.