Skip to content

Commit

Permalink
Added metafiles and changelog (#700)
Browse files Browse the repository at this point in the history
* Added metafiles and changelog

* Added scrunizer badges

* Run scrutinizer after successful build
  • Loading branch information
Nyholm authored Jun 17, 2017
1 parent 5363e5a commit 9d8ad0b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.gitattributes export-ignore
.travis.yml export-ignore
phpunit.xml.dist export-ignore
Tests/ export-ignore
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ install:
- composer update --prefer-stable --prefer-dist

script:
- composer test
- composer test-ci

after_success:
- wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --format=php-clover

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Change Log

The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.

## 4.0.0

First release of this library.
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Latest Stable Version](https://poser.pugx.org/geocoder-php/bing-maps-provider/v/stable)](https://packagist.org/packages/geocoder-php/bing-maps-provider)
[![Total Downloads](https://poser.pugx.org/geocoder-php/bing-maps-provider/downloads)](https://packagist.org/packages/geocoder-php/bing-maps-provider)
[![Monthly Downloads](https://poser.pugx.org/geocoder-php/bing-maps-provider/d/monthly.png)](https://packagist.org/packages/geocoder-php/bing-maps-provider)
[![Quality Score](https://img.shields.io/scrutinizer/g/geocoder-php/bing-maps-provider.svg?style=flat-square)](https://scrutinizer-ci.com/g/geocoder-php/bing-maps-provider)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)

This is the Bing Maps provider from the PHP Geocoder. This is a **READ ONLY** repository. See the
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
]
},
"scripts": {
"test": "vendor/bin/phpunit"
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"minimum-stability": "dev",
"extra": {
Expand Down

0 comments on commit 9d8ad0b

Please sign in to comment.