Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/backendtea/un-poly-all
Removes all polyfills from your project, where possible
https://github.com/backendtea/un-poly-all
Last synced: 17 days ago
JSON representation
Removes all polyfills from your project, where possible
- Host: GitHub
- URL: https://github.com/backendtea/un-poly-all
- Owner: BackEndTea
- License: mit
- Created: 2018-07-09T18:46:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-09T19:16:36.000Z (over 6 years ago)
- Last Synced: 2024-12-07T02:47:33.755Z (about 1 month ago)
- Size: 1000 Bytes
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Un Poly All
A lot of polyfills are not needed if your project requires a certain php version, or needs the locale
aware functionality of an extension. The polyfills slow down your application by adding `function_exists`, `extension_loaded` or php version checks that
are when your autoloader is loaded. By removing the polyfills the start up time is (slightly) reduced.If you do add this or one of its child packages, consider adding extension as a requirement to your `composer.json`.
## Installation
```bash
$ composer require backentea/un-poly-all
```