Skip to content

Commit 16d23cf

Browse files
committed
Fixed tests
1 parent 218aa81 commit 16d23cf

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: php
22
php:
3-
- 5.5
43
- 5.6
54
- 7.0
65
matrix:
@@ -14,11 +13,13 @@ before_script:
1413
- curl -s https://get.webino.org/support/travis/before-script | sh
1514
script:
1615
- curl -s https://get.webino.org/support/travis/script | sh
16+
after_failure:
17+
- curl -s https://get.webino.org/support/travis/after-failure | sh
1718
after_success:
1819
- curl -s https://get.webino.org/support/travis/after-success | sh
1920
env:
2021
global:
2122
- URI=http://localhost:8000/
22-
- BROWSER=chrome
23+
- BROWSER=firefox
2324
- GH_REF=github.com/webino/WebinoImageThumb
2425
- secure: VZgx4p0JeH4l8m9mziiH01694NwZY0r0SEaeZO28595UsvyafWJWLwhPPe4x7nqKm2Cvd79qY/yfuWiPh7KwIC+M47p2PyF/wrT7nPTCBod4p/ZBGJk8ISufILmy3mPZXQ25Mhn/yD82MzjloJVKX/JI06MZH70AtkCPgPUMnc8=

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://secure.travis-ci.org/webino/WebinoImageThumb.png?branch=develop)](http://travis-ci.org/webino/WebinoImageThumb "Develop Build Status")
44
[![Coverage Status](https://coveralls.io/repos/webino/WebinoImageThumb/badge.png?branch=develop)](https://coveralls.io/r/webino/WebinoImageThumb?branch=develop "Develop Coverage Status")
5-
[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/webino/WebinoImageThumb/badges/quality-score.png?s=b3ef629e7e8eaafe1dd8d70128958c2718dd8579)](https://scrutinizer-ci.com/g/webino/WebinoImageThumb/ "Quality Score")
5+
[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/webino/WebinoImageThumb/badges/quality-score.png?b=develop)](https://scrutinizer-ci.com/g/webino/WebinoImageThumb/?branch=develop "Quality Score")
66
[![Dependency Status](https://www.versioneye.com/user/projects/529f9724632bac57310000b6/badge.png)](https://www.versioneye.com/user/projects/529f9724632bac57310000b6 "Develop Dependency Status")
77
<br />
88
[![Latest Stable Version](https://poser.pugx.org/webino/webino-image-thumb/v/stable.png)](https://packagist.org/packages/webino/webino-image-thumb "Latest Stable Version")
@@ -36,6 +36,7 @@ Service that provides API to manipulate images.
3636

3737
## Requirements
3838

39+
- PHP >= 5.6
3940
- GD 2.0+
4041

4142
## QuickStart
@@ -212,6 +213,7 @@ Service that provides API to manipulate images.
212213

213214
### 2.0.0 [UNRELEASED]
214215

216+
- PHP >= 5.6
215217
- Requires PHPThumb 2.0 via composer
216218
- Added Whitespace Cropper plugin
217219
- Added Sharpen plugin

composer.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://github.com/webino/WebinoImageThumb",
55
"type": "library",
66
"license": "BSD-3-Clause",
7-
"keywords": ["webino", "image", "thumb", "zf2", "zend", "framework"],
7+
"keywords": ["webino", "image", "thumb", "zf2", "zend", "framework"],
88
"authors": [
99
{
1010
"name": "Webino, s. r. o.",
@@ -22,7 +22,7 @@
2222
"minimum-stability": "dev",
2323
"prefer-stable": true,
2424
"require": {
25-
"php": ">=5.5",
25+
"php": ">=5.6",
2626
"ext-gd": "*",
2727
"masterexploder/PHPThumb": "2.*",
2828
"zendframework/zend-di": "2.*"
@@ -44,5 +44,10 @@
4444
},
4545
"autoload": {
4646
"psr-0": {"WebinoImageThumb": "src/"}
47+
},
48+
"extra": {
49+
"webino-devkit": {
50+
"ZendSkeletonApplication": "release-2.2.8"
51+
}
4752
}
4853
}

tests/tester/php.ini

-1
This file was deleted.

0 commit comments

Comments
 (0)