-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide list of bundled extensions per PHP branch #36
Comments
This would probably need the PHP version relation as well, at least for some cases. As extensions come and go. |
What the title said, it will be json per branch :)
|
Got it :) .. this is probably also easier also for, extending later, when HHVM or something else comes in addition. |
WiP |
A simple list of the extensions bundled in the core per major version.
pickle cmd line or composer can then fetch them to directly deal correctly with it and tell the user to either enable, install or rebuild them php, alternatively rebuild php.
The list will be:
[
'extname' => false,
'extname' => 'vendor/repo',
]
false means this extension is only maintained in core.
'vendor/repo' is the name of the extensions within pickle, so if an newer external release is available, it can be installed.
Files:
/json/php-core-5.4.json
/json/php-core-5.5.json
/json/php-core-5.6.json
/json/php-core-7.0.json
The text was updated successfully, but these errors were encountered: