Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ably-common"]
path = ably-common
url = https://github.com/ably/ably-common
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
language: php
php:
- 5.4
before_script: composer install
script: vendor/bin/phpunit
1 change: 1 addition & 0 deletions ably-common
Submodule ably-common added at 34b393
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"name": "ably/ably-php",
"description": "Ably REST client library for PHP.",
"require": {
"php": ">=5.3.0"
"php": ">=5.4",
"ext-json" : "*",
"ext-curl" : "*",
"ext-openssl" : "*"
},
"require-dev": {
"phpunit/phpunit": ">=4.5"
Expand All @@ -18,5 +21,8 @@
"psr-4": {
"Ably\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}
Loading