| 1 |
PHP 5.2 Autoloading for Composer |
| 2 |
================================ |
| 3 |
|
| 4 |
This package provides an easy way to get a PHP 5.2 compatible autoloader out of Composer. The generated autoloader is fully compatible to the original and is written into separate files, each ending with `_52.php`. |
| 5 |
|
| 6 |
Legacy |
| 7 |
------ |
| 8 |
|
| 9 |
Please do not use this, if you can avoid it. It's a horrible hack, often breaks and is extremely tied to Composer's interna. This package was originally developed in 2012, when PHP 5.2 was much more common on cheap webhosts. |
| 10 |
|
| 11 |
In 2016, this package has been moved from Bitbucket to a Github organization, because the original developer could no longer reliably maintain it. This is the reason for this legacy package name ``xrstf/...``. |
| 12 |
|
| 13 |
Usage |
| 14 |
----- |
| 15 |
|
| 16 |
In your project's `composer.json`, add the following lines: |
| 17 |
|
| 18 |
```json |
| 19 |
{ |
| 20 |
"require": { |
| 21 |
"xrstf/composer-php52": "1.*" |
| 22 |
}, |
| 23 |
"scripts": { |
| 24 |
"post-install-cmd": [ |
| 25 |
"xrstf\\Composer52\\Generator::onPostInstallCmd" |
| 26 |
], |
| 27 |
"post-update-cmd": [ |
| 28 |
"xrstf\\Composer52\\Generator::onPostInstallCmd" |
| 29 |
], |
| 30 |
"post-autoload-dump": [ |
| 31 |
"xrstf\\Composer52\\Generator::onPostInstallCmd" |
| 32 |
] |
| 33 |
} |
| 34 |
} |
| 35 |
``` |
| 36 |
|
| 37 |
After the next update/install, you will have a `vendor/autoload_52.php` file, that you can simply include and use in PHP 5.2 projects. |
| 38 |
|