Skip to content

Commit b623ca1

Browse files
authored
Added metafiles and changelog (#700)
* Added metafiles and changelog * Added scrunizer badges * Run scrutinizer after successful build
1 parent 16edc3b commit b623ca1

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.gitattributes export-ignore
2+
.travis.yml export-ignore
3+
phpunit.xml.dist export-ignore
4+
Tests/ export-ignore

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ install:
77
- composer update --prefer-stable --prefer-dist
88

99
script:
10-
- composer test
10+
- composer test-ci
11+
12+
after_success:
13+
- wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --format=php-clover
1114

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
4+
5+
## 4.0.0
6+
7+
First release of this library.

Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[![Latest Stable Version](https://poser.pugx.org/geocoder-php/maxmind-binary-provider/v/stable)](https://packagist.org/packages/geocoder-php/maxmind-binary-provider)
44
[![Total Downloads](https://poser.pugx.org/geocoder-php/maxmind-binary-provider/downloads)](https://packagist.org/packages/geocoder-php/maxmind-binary-provider)
55
[![Monthly Downloads](https://poser.pugx.org/geocoder-php/maxmind-binary-provider/d/monthly.png)](https://packagist.org/packages/geocoder-php/maxmind-binary-provider)
6+
[![Quality Score](https://img.shields.io/scrutinizer/g/geocoder-php/maxmind-binary-provider.svg?style=flat-square)](https://scrutinizer-ci.com/g/geocoder-php/maxmind-binary-provider)
67
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
78

89
This is the MaxMind Binary provider from the PHP Geocoder. This is a **READ ONLY** repository. See the

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
]
3131
},
3232
"scripts": {
33-
"test": "vendor/bin/phpunit"
33+
"test": "vendor/bin/phpunit",
34+
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
3435
},
3536
"minimum-stability": "dev",
3637
"extra": {

0 commit comments

Comments
 (0)