Skip to content

Commit a01d408

Browse files
committed
Release codebird-php 3.0.0
2 parents 6dd3414 + 9d78f88 commit a01d408

26 files changed

+5740
-2337
lines changed

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
build
2+
composer.lock
13
RELEASE_MESSAGE*
2-
test*
4+
test*.php
5+
vendor
36
*.jpg
4-
*.mp4
7+
*.mp4

.travis.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# The Travis setup:
2+
# - run testsuite for every PHP version
3+
# - run lint for every PHP version
4+
5+
language: php
6+
sudo: false
7+
8+
php:
9+
- "7.0"
10+
- "5.6"
11+
- "5.5"
12+
- hhvm
13+
- nightly
14+
15+
sudo: false
16+
17+
before_script:
18+
- export PATH=~/.composer/vendor/bin/:$PATH
19+
- composer install --no-interaction
20+
- pip install --user codecov
21+
22+
script:
23+
- ant clean
24+
- set -e;
25+
if [ $TRAVIS_PHP_VERSION == "hhvm" ] ; then
26+
ant phpunit-hhvm ;
27+
else
28+
ant phpunit ;
29+
fi
30+
31+
after_script:
32+
- if [ -f vendor/bin/coveralls ] ; then php vendor/bin/coveralls -v || true ; fi
33+
- codecov
34+
- if [ -f php.log ] ; then cat php.log ; fi
35+
36+
matrix:
37+
allow_failures:
38+
- php: hhvm
39+
- php: nightly
40+
fast_finish: true
41+
cache:
42+
directories:
43+
- $HOME/.composer/cache/
44+
- $HOME/runkit
45+
# trigger Buildtime Trend Service to parse Travis CI log
46+
notifications:
47+
webhooks:
48+
- https://buildtimetrend.herokuapp.com/travis

CHANGELOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
codebird-php - changelog
22
========================
33

4+
3.0.0 (2016-01-01)
5+
+ Add unit testing suite
6+
+ #32 Support Twitter Streaming API
7+
+ #144 Support Twitter Collections API
8+
+ #145 Support Twitter TON (Object Nest) API
9+
+ #120 Support Twitter Ads API
10+
+ #117 Drop cURL workarounds added for PHP 5.3
11+
+ Update cacert.pem
12+
+ #121 Allow for multiple parameters in templated methods
13+
by replacing preg_match with preg_match_all
14+
+ #134 Add support for compressed remote images
15+
+ #129 Allow to change remote media download timeout
16+
+ Support WebP media format
17+
+ Fixes for non-multipart media uploads, see #141
18+
+ Return rate-limiting info as object, when return format = object
19+
- #107 Decoding issue for big ints on 32-bit servers
20+
- #147 Undefined index when checking for possible media files
21+
422
2.7.2 (2015-09-23)
523
- #135 Invalid HTTP request headers in non-cURL mode
624

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
- New features are added to the develop branch, please base your feature-add pull requests on that branch.
44

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

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

0 commit comments

Comments
 (0)