Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Renamed to zend-stratigility / Zend\Stratigility
Browse files Browse the repository at this point in the history
Namespaces become:

- src: `Phly\Conduit` -> `Zend\Stratigility`
- test: `PhlyTest\Conduit` -> `ZendTest\Stratigility`

All code is updated to use the new namespaces, and adds an appropriate license
block. Additionally, now uses zend-diactoros for PSR-7 implementation when
testing.
  • Loading branch information
weierophinney committed May 21, 2015
1 parent 9ca5f71 commit 98969e3
Show file tree
Hide file tree
Showing 31 changed files with 568 additions and 1,010 deletions.
14 changes: 2 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,23 @@ language: php
matrix:
fast_finish: true
include:
- php: 5.4
- php: 5.5
- php: 5.6
env:
- EXECUTE_COVERAGE=true
- EXECUTE_CS_CHECK=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
- php: hhvm

before_install:
- if [[ $EXECUTE_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

before_script:
- composer self-update
- composer install --prefer-source

script:
- if [[ $EXECUTE_COVERAGE == 'true' ]]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover ; fi
- if [[ $EXECUTE_COVERAGE != 'true' ]]; then ./vendor/bin/phpunit ; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=test/Bootstrap.php src test ; fi

after_script:
- if [[ $EXECUTE_COVERAGE == 'true' ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi
- if [[ $EXECUTE_COVERAGE == 'true' ]]; then php ocular.phar code-coverage:upload --format=php-clover ./test/coverage.clover ; fi
- ./vendor/bin/phpunit
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/phpcs --standard=PSR2 src test ; fi

notifications:
email: true
Loading

0 comments on commit 98969e3

Please sign in to comment.