8000 Add required PHP extensions to composer.json · carlpoole/codebird-php@0d93156 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0d93156

Browse files
committed
Add required PHP extensions to composer.json
1 parent 6d1a12b commit 0d93156

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"name": "jublonet/codebird-php",
33
"description" : "A Twitter library in PHP.",
4-
"version": "2.5.0-rc.1",
4+
"version": "2.5.0-rc.2-dev",
55
"autoload": {
66
"classmap": ["src/"]
77
},
88
"license": "GPL-3.0",
99
"require": {
10+
"ext-curl": "*",
11+
"ext-hash": "*",
12+
"ext-json": "*",
1013
"lib-openssl": "*",
1114
"lib-curl": "*"
1215
}

src/codebird.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
* A Twitter library in PHP.
77
*
88
* @package codebird
9-
* @version 2.5.0-rc.1
10-
* @author Jublo Solutions <support@jublo.net>
11-
* @copyright 2010-2014 Jublo Solutions <support@jublo.net>
9+
* @version 2.5.0-rc.2-dev
10+
* @author Jublo Solutions <support@jublo.net>
11+
* @copyright 2010-2014 Jublo Solutions <support@jublo.net>
1212
*
1313
* This program is free software: you can redistribute it and/or modify
1414
* it under the terms of the GNU General Public License as published by
@@ -117,7 +117,7 @@ class Codebird
117117
/**
118118
* The current Codebird version
119119
*/
120-
protected $_version = '2.5.0-rc.1';
120+
protected $_version = '2.5.0-rc.2-dev';
121121

122122
/**
123123
* Request timeout

0 commit comments

Comments
 (0)
0