Skip to content

Commit 1287e78

Browse files
committed
Merge pull request #2 from etechnika/develop
Some minor changes
2 parents 67f2e6d + 373797b commit 1287e78

File tree

4 files changed

+75
-8
lines changed

4 files changed

+75
-8
lines changed

.travis.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,26 @@
1+
sudo: false
2+
13
language: php
4+
25
php:
3-
- "5.5"
4-
- "5.4"
5-
- "5.3"
6+
- hhvm
7+
- 7.0
8+
- 5.6
9+
- 5.5
10+
- 5.4
11+
- 5.3
12+
13+
# optionally set up exclutions and allowed failures in the matrix
14+
matrix:
15+
allow_failures:
16+
- php: 7.0
617

718
branches:
819
only:
920
- master
21+
- develop
1022

11-
before_script:
23+
install:
1224
- composer install --dev
1325

1426
script:
@@ -21,4 +33,4 @@ script:
2133

2234

2335
after_script:
24-
- php vendor/bin/coveralls
36+
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls; fi;'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Branch | Unit Tests | Coverage | Dependency |
22
| ------ | ---------- | -------- | ---------- |
3-
| [![Latest Stable Version](https://poser.pugx.org/etechnika/ext-lib/v/stable.png)](https://packagist.org/packages/etechnika/ext-lib) | [![Build Status](https://travis-ci.org/etechnika/ext-lib.png?branch=master)](https://travis-ci.org/etechnika/ext-lib) | [![Coverage Status](https://coveralls.io/repos/etechnika/ext-lib/badge.png)](https://coveralls.io/r/etechnika/ext-lib) | [![Dependency Status](https://www.versioneye.com/user/projects/5287853b632bacbdfd000002/badge.png)](https://www.versioneye.com/user/projects/5287853b632bacbdfd000002) |
3+
| [![Latest Stable Version](https://poser.pugx.org/etechnika/ext-lib/v/stable.png)](https://packagist.org/packages/etechnika/ext-lib) | [![Build Status](https://travis-ci.org/etechnika/ext-lib.png?branch=master)](https://travis-ci.org/etechnika/ext-lib) | [![Coverage Status](https://coveralls.io/repos/etechnika/ext-lib/badge.svg?branch=master&service=github)](https://coveralls.io/github/etechnika/ext-lib?branch=master) | [![Dependency Status](https://www.versioneye.com/user/projects/5287853b632bacbdfd000002/badge.png)](https://www.versioneye.com/user/projects/5287853b632bacbdfd000002) |
44

55
Etechnika external lib prepated to packagist
66
=======

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"authors": [
99
{
1010
"name": "Tomasz Rutkowski",
11-
"email": "tomasz@etechnika.eu",
11+
"email": "majorserwis+etechnika@gmail.com",
1212
"homepage": "http://etechnika.eu",
1313
"role": "Developer"
1414
}
1515
],
1616
"minimum-stability": "stable",
1717
"prefer-stable": true,
1818
"require": {
19-
"php": "~5.3",
19+
"php": ">=5.3.0",
2020
"etechnika/idna-convert": "@stable"
2121
},
2222
"require-dev": {

0 commit comments

Comments
 (0)