├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── code │ └── community │ │ ├── Aoe │ │ └── ClassPathCache │ │ │ ├── Helper │ │ │ └── Data.php │ │ │ ├── controllers │ │ │ └── IndexController.php │ │ │ └── etc │ │ │ └── config.xml │ │ └── Varien │ │ └── Autoload.php ├── design │ └── adminhtml │ │ └── default │ │ └── default │ │ ├── layout │ │ └── aoe_classpathcache │ │ │ └── aoe_classpathcache.xml │ │ └── template │ │ └── aoe_classpathcache │ │ └── aoe_classpathcache.phtml └── etc │ └── modules │ └── Aoe_ClassPathCache.xml ├── composer.json ├── lib └── n98-magerun │ └── modules │ └── aoe-classpathcache │ ├── n98-magerun.yaml │ └── src │ └── Aoe │ └── ClassPathCache │ └── ClearCommand.php ├── modman ├── phpcs.xml └── shell └── aoe_classpathcache.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/Aoe/ClassPathCache/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/code/community/Aoe/ClassPathCache/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Aoe/ClassPathCache/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/code/community/Aoe/ClassPathCache/controllers/IndexController.php -------------------------------------------------------------------------------- /app/code/community/Aoe/ClassPathCache/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/code/community/Aoe/ClassPathCache/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Varien/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/code/community/Varien/Autoload.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/aoe_classpathcache/aoe_classpathcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/design/adminhtml/default/default/layout/aoe_classpathcache/aoe_classpathcache.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/aoe_classpathcache/aoe_classpathcache.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/design/adminhtml/default/default/template/aoe_classpathcache/aoe_classpathcache.phtml -------------------------------------------------------------------------------- /app/etc/modules/Aoe_ClassPathCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/app/etc/modules/Aoe_ClassPathCache.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/composer.json -------------------------------------------------------------------------------- /lib/n98-magerun/modules/aoe-classpathcache/n98-magerun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/lib/n98-magerun/modules/aoe-classpathcache/n98-magerun.yaml -------------------------------------------------------------------------------- /lib/n98-magerun/modules/aoe-classpathcache/src/Aoe/ClassPathCache/ClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/lib/n98-magerun/modules/aoe-classpathcache/src/Aoe/ClassPathCache/ClearCommand.php -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/modman -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/phpcs.xml -------------------------------------------------------------------------------- /shell/aoe_classpathcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_ClassPathCache/HEAD/shell/aoe_classpathcache.php --------------------------------------------------------------------------------