Skip to content

Commit

Permalink
Merge pull request #2 from real-digital/develop
Browse files Browse the repository at this point in the history
Release v1.0.2
  • Loading branch information
radarlog authored Oct 18, 2018
2 parents 483fb83 + 5b0165b commit f371515
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 15 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: php

php:
- '7.1'
- '7.2'

sudo: false

Expand Down
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
[1.0.0]: https://github.com/hitmeister/gtin-validator/releases/tag/1.0.0
[1.0.1]: https://github.com/hitmeister/gtin-validator/releases/tag/1.0.1
[1.0.0]: https://github.com/real-digital/gtin-validator/commits/1.0.0
[1.0.1]: https://github.com/real-digital/gtin-validator/commits/1.0.1
[1.0.2]: https://github.com/real-digital/gtin-validator/commits/1.0.2

# Changelog

All notable changes to this project will be listed in this file.

## [1.0.1] - 2017-05-24
## [1.0.2] - 2018-10-16

- Update brand links
- Use git tags as a source for package versions
- Improve tests

## [1.0.1] - 2018-05-24

Fix building

## [1.0.0] - 2017-05-24
## [1.0.0] - 2018-05-24

The first release as a separated library
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Real GTIN Validator [![Build Status](https://travis-ci.org/hitmeister/gtin-validator.svg?branch=master)](https://travis-ci.org/hitmeister/gtin-validator)
# Real GTIN Validator

[![Latest Stable Version](http://img.shields.io/github/release/hitmeister/gtin-validator.svg)](https://packagist.org/packages/real-digital/gtin-validator)
[![Coverage Status](https://coveralls.io/repos/github/hitmeister/gtin-validator/badge.svg?branch=master)](https://coveralls.io/github/hitmeister/gtin-validator?branch=master)
[![Latest Stable Version](https://img.shields.io/packagist/v/real-digital/gtin-validator.svg)](https://packagist.org/packages/real-digital/gtin-validator)
[![Build Status](https://travis-ci.org/real-digital/gtin-validator.svg?branch=master)](https://travis-ci.org/real-digital/gtin-validator)
[![Coverage Status](https://coveralls.io/repos/github/real-digital/gtin-validator/badge.svg?branch=master)](https://coveralls.io/github/real-digital/gtin-validator?branch=master)

A GTIN is a string of digits that uniquely identifies a trade item (a product that is bought and sold).
A GTIN is globally unique, meaning that no two products in the world share the same GTIN.
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
}
],
"support": {
"source": "https://github.com/hitmeister/gtin-validator",
"issues": "https://github.com/hitmeister/gtin-validator/issues"
"email": "opensource@real-digital.de",
"issues": "https://github.com/real-digital/gtin-validator/issues",
"source": "https://github.com/real-digital/gtin-validator"
},
"license": "Apache-2.0",
"type": "library",
"version": "1.0.0",
"minimum-stability": "stable",
"config": {
"sort-packages": true
Expand All @@ -29,7 +29,7 @@
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"phpunit/phpunit": "^7.3",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
Expand Down
9 changes: 5 additions & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- https://phpunit.readthedocs.io/en/latest/ -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
executionOrder="random"
>
<php>
<ini name="date.timezone" value="UTC"/>
</php>

<testsuites>
<testsuite name="Real GTIN Validator Test Suite">
<directory suffix="Test.php">tests/</directory>
<directory>tests/</directory>
</testsuite>
</testsuites>

Expand Down

0 comments on commit f371515

Please sign in to comment.