Skip to content

Commit 9f69fad

Browse files
committed
added travis.yml and composer.json improvements
1 parent 999379d commit 9f69fad

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

composer.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@
33
"description": "A collection of common algorithms implemented in PHP. The collection is based on \"Cracking the Coding Interview\" by Gayle Laakmann McDowell",
44
"type": "library",
55
"license": "MIT",
6+
"homepage": "https://www.dogan-ucar.de/phpalgorithms-2/",
7+
"keywords": [
8+
"algorithms",
9+
"data structures"
10+
],
611
"authors": [
712
{
813
"name": "Dogan Ucar",
9-
"email": "[email protected]"
14+
"email": "[email protected]",
15+
"homepage": "https://www.dogan-ucar.de"
1016
}
1117
],
1218
"autoload": {
@@ -18,7 +24,7 @@
1824
"phpunit/phpunit": "6.5"
1925
},
2026
"require": {
21-
"doganoo/php-util": "0.0.*",
22-
"zumba/json-serializer": "*"
27+
"php": ">=7.1",
28+
"doganoo/php-util": "0.0.*"
2329
}
2430
}

travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: php
2+
3+
php:
4+
- '7.1'

0 commit comments

Comments
 (0)