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

Add facades and code coverage report #4

Merged
merged 28 commits into from
Sep 1, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9591026
Add fail fast request
idmontie Aug 28, 2015
cff4a51
Add rss feed and json feed
idmontie Aug 31, 2015
46ad0bb
Fix feed interface set_items signature
idmontie Aug 31, 2015
8f7a086
Add generic json facade
idmontie Aug 31, 2015
0bb3a26
Fix typo in json feed
idmontie Aug 31, 2015
8201d1d
Fix get_curl_feed_data accessibility
idmontie Aug 31, 2015
3bc73b9
Fix access to class member url in Generic Json Facade
idmontie Aug 31, 2015
34794b5
Decode json before checking for errors
idmontie Aug 31, 2015
225f0f7
Add tests for Json Feed and Generic JSON Facade
idmontie Aug 31, 2015
c803d87
Add json utilities and tests
idmontie Sep 1, 2015
6f01c37
Fix twitter json facade
idmontie Sep 1, 2015
67ee1c5
Fix function casing
idmontie Sep 1, 2015
3bd0163
Add string utilities, fix name of ensure_default
idmontie Sep 1, 2015
b24c800
Fix typo in twitter json facade
idmontie Sep 1, 2015
da79ff7
Fix logic error in twitter json facade
idmontie Sep 1, 2015
ac56c64
Fix twitter json facade, ksort is pass by ref
idmontie Sep 1, 2015
d601a36
Fix typo
idmontie Sep 1, 2015
cc03b4e
Try out nightly php build?
idmontie Sep 1, 2015
265548e
Remove hhvm nightly from travis
idmontie Sep 1, 2015
bd953cc
Try coveralls
idmontie Sep 1, 2015
6c22622
Add logging
idmontie Sep 1, 2015
f651ed3
Not scrutinizing yet
idmontie Sep 1, 2015
82d9389
Merge pull request #3 from gios-asu/coveralls-ivan-develop
idmontie Sep 1, 2015
ca28095
Add Twitter Json Facade integration tests
idmontie Sep 1, 2015
9c84172
Merge branch 'ivan-develop' of github.com:gios-asu/nectary into ivan-…
idmontie Sep 1, 2015
1fcfe93
Add and fix functionality for json utilities
idmontie Sep 1, 2015
967f8e7
Fix curl_strerror not supported on hhvm
idmontie Sep 1, 2015
46c6663
Fix typo
idmontie Sep 1, 2015
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 @@
src_dir: .
coverage_clover: coverage/clover.xml
json_path: coverage/coveralls-upload.json
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@ php:
- 5.5
- 5.6
- 7.0
- nightly
- hhvm

install:
- composer install --no-interaction --prefer-source

before_script:
- mkdir coverage

script:
- vendor/bin/phpunit
- vendor/bin/phpunit --coverage-clover coverage/clover.xml

after_script:
- php vendor/bin/coveralls -v
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![Nectary](documentation/images/nectary-with-text.png)

[![Build Status](https://travis-ci.org/gios-asu/nectary.svg)](https://travis-ci.org/gios-asu/nectary)
[![Build Status](https://travis-ci.org/gios-asu/nectary.svg)](https://travis-ci.org/gios-asu/nectary) [![Coverage Status](https://coveralls.io/repos/gios-asu/nectary/badge.svg?branch=develop&service=github)](https://coveralls.io/github/gios-asu/nectary?branch=develop)


A simple PHP framework that is not tied to a web interface.
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@
"files": [
"src/utilities/command-utilities.php",
"src/utilities/configuration-utilities.php",
"src/utilities/ensure_default.php"
"src/utilities/ensure-default.php",
"src/utilities/string-utilities.php"
],
"classmap" : [ "src/" ]
},
"require": {
"xamin/handlebars.php": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
"phpunit/phpunit": "4.8.*",
"satooshi/php-coveralls": ">=0.6"
}
}
Loading