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

Adding merge and delete #20

Merged
merged 8 commits into from
Dec 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
coverage_clover: tests/logs/clover.xml
json_path: tests/logs/coveralls-upload.json
service_name: travis-ci
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
nbproject

/vendor/
/tests/logs/
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ php:

# Commands to be run before your environment runs.
before_script:
- phpenv config-rm xdebug.ini
#- phpenv config-rm xdebug.ini
- composer self-update
- composer install --prefer-source --no-interaction

# Commands you want to run that will verify your build.
script: ./vendor/bin/phpunit tests
script: ./vendor/bin/phpunit tests -c ./tests/configuration.xml --coverage-clover ./tests/logs/clover.xml

after_script:
- php vendor/bin/coveralls -v

# allow_failures: Allow this build to fail under the specified environments.
# fast_finish: If your build fails do not continue trying to build, just stop.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Dot Notation

[![Build Status](https://travis-ci.org/dschoenbauer/dot-notation.svg?branch=develop)](https://travis-ci.org/dschoenbauer/dot-notation)
[![Coverage Status](https://coveralls.io/repos/github/dschoenbauer/dot-notation/badge.svg?branch=develop)](https://coveralls.io/github/dschoenbauer/dot-notation?branch=develop)

## Purpose
Simplifies access to large array structures
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dschoenbauer/dot-notation",
"type": "library",
"license": "Private",
"license": "MIT",
"authors": [
{
"name": "David Schoenbauer",
Expand All @@ -17,7 +17,8 @@
}
},
"require-dev": {
"phpunit/phpunit": "5.6.2"
"phpunit/phpunit": "5.6.2",
"satooshi/php-coveralls": "dev-master"
},
"scripts" :{
"test" : "phpunit tests"
Expand Down
Loading