PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 2.1.6
Visualizer – Tables & Charts Manager with Built-in AI Generator v2.1.6
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
visualizer / vendor / xrstf / composer-php52 / README.md

README.md in Visualizer – Tables & Charts Manager with Built-in AI Generator 2.1.6, at vendor/xrstf/composer-php52/README.md

38 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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