-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added meta documents * Minor * documentation fixes * Updated shields * Readded sensiolabs insight
- Loading branch information
Showing
11 changed files
with
131 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,28 @@ | ||
| Q | A | ||
| ----------------------- | --- | ||
| Bug? | no|yes | ||
| New Feature? | no|yes | ||
| Are you using composer? | no|yes | ||
| Version | Specific version or SHA of a commit | ||
|
||
|
||
#### Actual Behavior | ||
|
||
What is the actual behavior? | ||
|
||
|
||
#### Expected Behavior | ||
|
||
What is the behavior you expect? | ||
|
||
|
||
#### Steps to Reproduce | ||
|
||
What are the steps to reproduce this bug? Please add code examples, | ||
screenshots or links to GitHub repositories that reproduce the problem. | ||
|
||
|
||
#### Possible Solutions | ||
|
||
If you have already ideas how to solve the issue, add them here. | ||
(remove this section if not needed) |
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,42 @@ | ||
| Q | A | ||
| --------------- | --- | ||
| Bug fix? | no|yes | ||
| New feature? | no|yes | ||
| BC breaks? | no|yes | ||
| Deprecations? | no|yes | ||
| Related tickets | fixes #X, partially #Y, mentioned in #Z | ||
| License | MIT | ||
|
||
|
||
#### What's in this PR? | ||
|
||
Explain what the changes in this PR do. | ||
|
||
|
||
#### Why? | ||
|
||
Which problem does the PR fix? (remove this section if you linked an issue above) | ||
|
||
|
||
#### Example Usage | ||
|
||
``` php | ||
// If you added new features, show examples of how to use them here | ||
// (remove this section if not a new feature) | ||
|
||
$foo = new Foo(); | ||
|
||
// Now we can do | ||
$foo->doSomething(); | ||
``` | ||
|
||
|
||
#### Checklist | ||
|
||
- [ ] Updated CHANGELOG.md to describe BC breaks / deprecations | new feature | bugfix | ||
- [ ] Documentation pull request created (if not simply a bugfix) | ||
|
||
|
||
#### To Do | ||
|
||
- [ ] If the PR is not complete but you want to discuss the approach, list what remains to be done here |
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 @@ | ||
phpunit.xml | ||
/build/ | ||
composer.lock | ||
vendor | ||
index.php | ||
phpunit.xml | ||
/vendor/ |
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,8 @@ | ||
filter: | ||
paths: [src/*] | ||
checks: | ||
php: | ||
code_rating: true | ||
duplication: true | ||
tools: | ||
external_code_coverage: true |
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,12 @@ | ||
preset: symfony | ||
|
||
finder: | ||
paths: | ||
- "src" | ||
- "tests" | ||
|
||
enabled: | ||
- short_array_syntax | ||
|
||
disabled: | ||
- phpdoc_annotation_without_dot |
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,23 +1,35 @@ | ||
language: php | ||
sudo: false | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache/files | ||
|
||
php: | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
|
||
env: | ||
global: | ||
- TEST_COMMAND="composer test" | ||
|
||
matrix: | ||
fast_finish: true | ||
include: | ||
- php: 5.5 | ||
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci" | ||
|
||
before_install: | ||
- composer self-update | ||
|
||
install: | ||
- composer require satooshi/php-coveralls:~0.6@stable | ||
|
||
before_script: | ||
- mkdir -p build/logs | ||
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction | ||
|
||
script: | ||
- phpunit --coverage-clover build/logs/clover.xml | ||
- $TEST_COMMAND | ||
|
||
after_success: | ||
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;' | ||
- if [[ $COVERAGE = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi | ||
- if [[ $COVERAGE = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi |
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
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