Skip to content

Commit

Permalink
Adding merge and delete (#20)
Browse files Browse the repository at this point in the history
* adding initial coverall support (#14)

* adding initial coverall support

* adding back xdebug support to get coverage information

* adding phpunit whitelist through config xml

* Correcting whitelist

* Correcting whitelist

* More Tweaking

* mer

* mer

* Locally reporting coverage

* Updated Readme.md to included coverage badge

* Updated Readme.md to included coverage badge

* Add merge functionality (#15)

* Updated license

* Added merge with tests also resolves #8

* Updated documentation

* updated documentation to apigen (#17)

* Updated Exception Handling and added the remove function

* Added missing test

* Updated Exception Handling and added the remove function (#18)

* Updated Exception Handling and added the remove function

* Added missing test

* updated documentation
  • Loading branch information
dschoenbauer committed Dec 1, 2016
1 parent 3c850bb commit 3fbc97f
Show file tree
Hide file tree
Showing 191 changed files with 7,776 additions and 23,523 deletions.
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

0 comments on commit 3fbc97f

Please sign in to comment.