This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable extensions declared in composer.json (#245)
* Add script to parse composer.json for extensions to enable and enable them * Add tests for the detect php version and install extensions scripts * Fix cs style * Extra whitespace * No reason to handle shared vs. debian packaged extensions separate for now * Run all the extension tests using the extension enabler rather than declaring in the custom php.ini file * fix installation of bcmath, raphf, pq * Fail if an extension is not available or if the extension version requested is not '*' * Fix cs * Maintain a blacklist of unsupported extensions/php versions * Fix variable name * Fix output file for the extensions.ini file * Update README for note on installing extensions
- Loading branch information
Showing
24 changed files
with
1,668 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"require": { | ||
"composer/semver": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.8.*" | ||
} | ||
} |
Oops, something went wrong.