Skip to content

Commit

Permalink
Release codebird-php 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mynetx committed Jan 1, 2016
2 parents 6dd3414 + 9d78f88 commit a01d408
Show file tree
Hide file tree
Showing 26 changed files with 5,740 additions and 2,337 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
build
composer.lock
RELEASE_MESSAGE*
test*
test*.php
vendor
*.jpg
*.mp4
*.mp4
48 changes: 48 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# The Travis setup:
# - run testsuite for every PHP version
# - run lint for every PHP version

language: php
sudo: false

php:
- "7.0"
- "5.6"
- "5.5"
- hhvm
- nightly

sudo: false

before_script:
- export PATH=~/.composer/vendor/bin/:$PATH
- composer install --no-interaction
- pip install --user codecov

script:
- ant clean
- set -e;
if [ $TRAVIS_PHP_VERSION == "hhvm" ] ; then
ant phpunit-hhvm ;
else
ant phpunit ;
fi

after_script:
- if [ -f vendor/bin/coveralls ] ; then php vendor/bin/coveralls -v || true ; fi
- codecov
- if [ -f php.log ] ; then cat php.log ; fi

matrix:
allow_failures:
- php: hhvm
- php: nightly
fast_finish: true
cache:
directories:
- $HOME/.composer/cache/
- $HOME/runkit
# trigger Buildtime Trend Service to parse Travis CI log
notifications:
webhooks:
- https://buildtimetrend.herokuapp.com/travis
18 changes: 18 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
codebird-php - changelog
========================

3.0.0 (2016-01-01)
+ Add unit testing suite
+ #32 Support Twitter Streaming API
+ #144 Support Twitter Collections API
+ #145 Support Twitter TON (Object Nest) API
+ #120 Support Twitter Ads API
+ #117 Drop cURL workarounds added for PHP 5.3
+ Update cacert.pem
+ #121 Allow for multiple parameters in templated methods
by replacing preg_match with preg_match_all
+ #134 Add support for compressed remote images
+ #129 Allow to change remote media download timeout
+ Support WebP media format
+ Fixes for non-multipart media uploads, see #141
+ Return rate-limiting info as object, when return format = object
- #107 Decoding issue for big ints on 32-bit servers
- #147 Undefined index when checking for possible media files

2.7.2 (2015-09-23)
- #135 Invalid HTTP request headers in non-cURL mode

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
- New features are added to the develop branch, please base your feature-add pull requests on that branch.

### Code style
- Please use 4 soft spaces per indent level.
- Please use 2 soft spaces per indent level.
- Take a look at the coding style used in codebird.php and apply the same convention to your contributed code.
The styleguide is also available online at http://pear.php.net/manual/en/standards.php.
The styleguide is also available online at https://pear.php.net/manual/en/standards.php.

### License
- Code contributed by you will get the same license as Codebird itself, that is, GPU General Public License V3.
Loading

0 comments on commit a01d408

Please sign in to comment.