Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianbergmann/foal
Tool to find lines eliminated by OpCache's bytecode optimizer
https://github.com/sebastianbergmann/foal
Last synced: about 1 month ago
JSON representation
Tool to find lines eliminated by OpCache's bytecode optimizer
- Host: GitHub
- URL: https://github.com/sebastianbergmann/foal
- Owner: sebastianbergmann
- License: bsd-3-clause
- Created: 2018-12-22T08:07:19.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T04:53:30.000Z (5 months ago)
- Last Synced: 2024-10-01T08:01:22.185Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 11.5 MB
- Stars: 141
- Watchers: 14
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
[![No Maintenance Intended](https://unmaintained.tech/badge.svg)](https://unmaintained.tech/)
[![CI Status](https://github.com/sebastianbergmann/foal/workflows/CI/badge.svg)](https://github.com/sebastianbergmann/foal/actions)
[![codecov](https://codecov.io/gh/sebastianbergmann/foal/branch/main/graph/badge.svg)](https://codecov.io/gh/sebastianbergmann/foal)# Find Optimized-Away Lines (FOAL)
`foal` finds lines of code that are eliminated by OpCache's bytecode optimizer.
## Installation
The recommended way to use this tool is a [PHP Archive (PHAR)](https://php.net/phar):
```bash
$ wget https://phar.phpunit.de/foal.phar$ php foal.phar --version
```Furthermore, it is recommended to use [Phive](https://phar.io/) for installing and updating the tool dependencies of your project.
## Usage
**`example.php`**
```php