├── ChangeLog.md ├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json ├── composer.lock ├── example ├── optimized.svg └── unoptimized.svg ├── foal └── src ├── Analyser.php ├── Renderer.php ├── TextRenderer.php ├── bytecode ├── Disassembler.php ├── VldDisassembler.php └── VldParser.php ├── cli ├── Application.php ├── Configuration.php ├── ConfigurationBuilder.php ├── Factory.php └── Version.php ├── exception ├── ConfigurationBuilderException.php ├── Exception.php ├── OpcacheNotLoadedException.php ├── PathsNotConfiguredException.php ├── ProcessException.php └── VldNotLoadedException.php └── file ├── File.php ├── FileCollection.php └── FileCollectionIterator.php /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/composer.lock -------------------------------------------------------------------------------- /example/optimized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/example/optimized.svg -------------------------------------------------------------------------------- /example/unoptimized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/example/unoptimized.svg -------------------------------------------------------------------------------- /foal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/foal -------------------------------------------------------------------------------- /src/Analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/Analyser.php -------------------------------------------------------------------------------- /src/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/Renderer.php -------------------------------------------------------------------------------- /src/TextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/TextRenderer.php -------------------------------------------------------------------------------- /src/bytecode/Disassembler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/bytecode/Disassembler.php -------------------------------------------------------------------------------- /src/bytecode/VldDisassembler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/bytecode/VldDisassembler.php -------------------------------------------------------------------------------- /src/bytecode/VldParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/bytecode/VldParser.php -------------------------------------------------------------------------------- /src/cli/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/cli/Application.php -------------------------------------------------------------------------------- /src/cli/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/cli/Configuration.php -------------------------------------------------------------------------------- /src/cli/ConfigurationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/cli/ConfigurationBuilder.php -------------------------------------------------------------------------------- /src/cli/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/cli/Factory.php -------------------------------------------------------------------------------- /src/cli/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/cli/Version.php -------------------------------------------------------------------------------- /src/exception/ConfigurationBuilderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/exception/ConfigurationBuilderException.php -------------------------------------------------------------------------------- /src/exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/exception/Exception.php -------------------------------------------------------------------------------- /src/exception/OpcacheNotLoadedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/exception/OpcacheNotLoadedException.php -------------------------------------------------------------------------------- /src/exception/PathsNotConfiguredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/exception/PathsNotConfiguredException.php -------------------------------------------------------------------------------- /src/exception/ProcessException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/exception/ProcessException.php -------------------------------------------------------------------------------- /src/exception/VldNotLoadedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/exception/VldNotLoadedException.php -------------------------------------------------------------------------------- /src/file/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/file/File.php -------------------------------------------------------------------------------- /src/file/FileCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/file/FileCollection.php -------------------------------------------------------------------------------- /src/file/FileCollectionIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/foal/HEAD/src/file/FileCollectionIterator.php --------------------------------------------------------------------------------