├── .gitignore ├── LICENSE ├── README.md ├── cache └── .gitignore ├── check.php ├── composer.json ├── composer.lock ├── config.default.php ├── index.html.php ├── optimize.php ├── parallel.php └── src └── ExpiredFileManager.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/README.md -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/check.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/composer.lock -------------------------------------------------------------------------------- /config.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/config.default.php -------------------------------------------------------------------------------- /index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/index.html.php -------------------------------------------------------------------------------- /optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/optimize.php -------------------------------------------------------------------------------- /parallel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/parallel.php -------------------------------------------------------------------------------- /src/ExpiredFileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirak/packagist-crawler/HEAD/src/ExpiredFileManager.php --------------------------------------------------------------------------------