Skip to content

Commit ec940c2

Browse files
author
Jamie Hannaford
committed
Fix path
1 parent 5abfbe8 commit ec940c2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

doc/using-php-5.3.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Using the SDK with PHP v5.3
2+
===========================
3+
4+
Since PHP 5.3 has entered EOL and no longer receives security updates, we have bumped the minimum requirement to 5.4. Using 5.3 is still possible, however, but you will need to use an older stable version of the SDK. There are two ways to do this.
5+
6+
The first way is by requiring it through the command line:
7+
8+
.. code-block:: bash
9+
10+
composer require rackspace/php-opencloud:1.12
11+
12+
The second way is by updating your composer.json file, and specifying the appropriate version of the SDK:
13+
14+
.. code-block:: json
15+
16+
"require": {
17+
"rackspace/php-opencloud": "~1.12"
18+
}
19+
20+
Note that **1.12** is the last minor release supporting PHP 5.3. Version 1.13 and above has shifted to PHP 5.4.

0 commit comments

Comments
 (0)