Skip to content

Commit 1a0bc29

Browse files
Updated composer and travis
1 parent 8b0cd1a commit 1a0bc29

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
language: php
2+
sudo: false
3+
cache:
4+
directories:
5+
- $HOME/.composer/cache
6+
- vendor
27
php:
38
- 5.4
49
- 5.5
@@ -7,6 +12,9 @@ php:
712
- 7.1
813
- hhvm
914
- nightly
10-
15+
before_install:
16+
- phpenv config-rm xdebug.ini || return 0
1117
install:
12-
- composer install --no-interaction --dev
18+
- composer install --no-interaction
19+
script:
20+
- vendor/bin/phpunit # This is implied, but just to be safe.

composer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@
1414
"authors": [
1515
{
1616
"name": "Luca Santarella",
17-
"email": "[email protected]"
17+
"email": "[email protected]",
18+
"homepage": "https://www.lucasantarella.com"
1819
}
1920
],
20-
"require": {},
21+
"homepage": "https://github.com/lucasantarella/php-array-keys-recursive",
22+
"require": {
23+
"php":">=5.4.0"
24+
},
2125
"require-dev": {
2226
"phpunit/phpunit": "^4.0"
2327
},

0 commit comments

Comments
 (0)