Skip to content

Commit af64185

Browse files
committed
Preparation for a new release
1. Updated the dependency on corneltek/curlkit to the latest stable release as required by PHPBrew. 2. Added a development dependency on PHPUnit. 3. Added Travis CI configuration. 4. Fixed tests (removed the usage of pear.corneltek.com since it's no longer available).
1 parent a5d85f5 commit af64185

File tree

7 files changed

+1218
-19
lines changed

7 files changed

+1218
-19
lines changed

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
composer.lock
2-
tests/tmp
3-
vendor
1+
/tests/tmp
2+
/vendor

.travis.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: php
2+
php:
3+
- 5.6
4+
- 7.0
5+
- 7.1
6+
- 7.2
7+
- 7.3
8+
9+
branches:
10+
only:
11+
- master
12+
13+
install:
14+
- composer install
15+
- composer update phpunit/phpunit --with-dependencies
16+
17+
script:
18+
- vendor/bin/phpunit
19+
20+
cache:
21+
directories:
22+
- $HOME/.composer/cache
23+
- vendor

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "corneltek/pearx",
3-
"homepage": "http://github.com/c9s/PEARX",
3+
"homepage": "http://github.com/phpbrew/PEARX",
44
"description": "PEAR channel client",
55
"require": {
66
"php": ">=5.3.0",
77
"corneltek/cachekit": "^1",
8-
"corneltek/curlkit": "1.0.x-dev"
8+
"corneltek/curlkit": "^1.0.11"
99
},
1010
"require-dev": {
11-
"phpunit/phpunit": "^5.7",
12-
"corneltek/phpunit-testmore": "dev-master"
11+
"corneltek/phpunit-testmore": "dev-master",
12+
"phpunit/phpunit": "^4.8||^5.7"
1313
},
1414
"license": "MIT",
1515
"authors": [

0 commit comments

Comments
 (0)