-
Notifications
You must be signed in to change notification settings - Fork 1
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 #21 from sunrise-php/release/v1.8.0
v1.8.0
- Loading branch information
Showing
7 changed files
with
79 additions
and
42 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,65 @@ | ||
# PHP CircleCI 2.0 configuration file | ||
# | ||
# Check https://circleci.com/docs/2.0/language-php/ for more details | ||
# | ||
version: 2 | ||
jobs: | ||
php71: | ||
docker: | ||
- image: circleci/php:7.1-cli-node-browsers | ||
steps: | ||
- run: sudo pecl install apcu | ||
- run: sudo docker-php-ext-enable apcu | ||
- run: php -v | ||
- checkout | ||
- run: composer install --no-interaction --prefer-source --no-suggest | ||
- run: php vendor/bin/phpunit --colors=always | ||
php72: | ||
docker: | ||
- image: circleci/php:7.2-cli-node-browsers | ||
steps: | ||
- run: sudo pecl install apcu | ||
- run: sudo docker-php-ext-enable apcu | ||
- run: php -v | ||
- checkout | ||
- run: composer install --no-interaction --prefer-source --no-suggest | ||
- run: php vendor/bin/phpunit --colors=always | ||
php73: | ||
docker: | ||
- image: circleci/php:7.3-cli-node-browsers | ||
steps: | ||
- run: sudo pecl install apcu | ||
- run: sudo docker-php-ext-enable apcu | ||
- run: php -v | ||
- checkout | ||
- run: composer install --no-interaction --prefer-source --no-suggest | ||
- run: php vendor/bin/phpunit --colors=always | ||
php74: | ||
docker: | ||
- image: circleci/php:7.4-cli-node-browsers | ||
steps: | ||
- run: sudo pecl install apcu | ||
- run: sudo docker-php-ext-enable apcu | ||
- run: php -v | ||
- checkout | ||
- run: composer install --no-interaction --prefer-source --no-suggest | ||
- run: php vendor/bin/phpunit --colors=always | ||
php80: | ||
docker: | ||
- image: circleci/php:8.0-cli-node-browsers | ||
steps: | ||
- run: sudo pecl install apcu | ||
- run: sudo docker-php-ext-enable apcu | ||
- run: php -v | ||
- checkout | ||
- run: composer install --no-interaction --prefer-source --no-suggest | ||
- run: php vendor/bin/phpunit --colors=always | ||
workflows: | ||
version: 2 | ||
build: | ||
jobs: | ||
- php71 | ||
- php72 | ||
- php73 | ||
- php74 | ||
- php80 |
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,4 +1,5 @@ | ||
.php_cs.cache | ||
.phpunit.result.cache | ||
composer.lock | ||
coverage.xml | ||
phpbench.json | ||
|
This file was deleted.
Oops, something went wrong.
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
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,13 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<phpunit bootstrap="tests/bootstrap.php" colors="true"> | ||
<phpunit bootstrap="tests/bootstrap.php" colors="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage> | ||
<include> | ||
<directory>./src</directory> | ||
</include> | ||
</coverage> | ||
<testsuites> | ||
<testsuite name="Sunrise // Open Api Specification Support for HTTP Router Test Suite"> | ||
<testsuite name="OpenAPI Specification Support for Sunrise HTTP Router Test Suite"> | ||
<directory>./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory>./src</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> |