├── .gitignore ├── .travis.yml ├── Command ├── DriverLockCommand.php └── DriverUnlockCommand.php ├── DependencyInjection ├── Configuration.php └── LexikMaintenanceExtension.php ├── Drivers ├── AbstractDriver.php ├── DatabaseDriver.php ├── DriverFactory.php ├── DriverTtlInterface.php ├── FileDriver.php ├── MemCacheDriver.php ├── Query │ ├── DefaultQuery.php │ ├── DsnQuery.php │ └── PdoQuery.php └── ShmDriver.php ├── Exception └── ServiceUnavailableException.php ├── LICENSE ├── LexikMaintenanceBundle.php ├── Listener └── MaintenanceListener.php ├── README.md ├── Resources ├── config │ ├── database.xml │ └── services.xml ├── doc │ └── index.md └── translations │ ├── maintenance.en.yml │ └── maintenance.fr.yml ├── Tests ├── EventListener │ ├── MaintenanceListenerTest.php │ └── MaintenanceListenerTestWrapper.php ├── Maintenance │ ├── DriverFactoryTest.php │ ├── FileMaintenanceTest.php │ ├── MemCacheTest.php │ └── TestCase.php ├── TestCase.php └── TestHelper.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Command/DriverLockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Command/DriverLockCommand.php -------------------------------------------------------------------------------- /Command/DriverUnlockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Command/DriverUnlockCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/LexikMaintenanceExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/DependencyInjection/LexikMaintenanceExtension.php -------------------------------------------------------------------------------- /Drivers/AbstractDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/AbstractDriver.php -------------------------------------------------------------------------------- /Drivers/DatabaseDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/DatabaseDriver.php -------------------------------------------------------------------------------- /Drivers/DriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/DriverFactory.php -------------------------------------------------------------------------------- /Drivers/DriverTtlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/DriverTtlInterface.php -------------------------------------------------------------------------------- /Drivers/FileDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/FileDriver.php -------------------------------------------------------------------------------- /Drivers/MemCacheDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/MemCacheDriver.php -------------------------------------------------------------------------------- /Drivers/Query/DefaultQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/Query/DefaultQuery.php -------------------------------------------------------------------------------- /Drivers/Query/DsnQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/Query/DsnQuery.php -------------------------------------------------------------------------------- /Drivers/Query/PdoQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/Query/PdoQuery.php -------------------------------------------------------------------------------- /Drivers/ShmDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Drivers/ShmDriver.php -------------------------------------------------------------------------------- /Exception/ServiceUnavailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Exception/ServiceUnavailableException.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /LexikMaintenanceBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/LexikMaintenanceBundle.php -------------------------------------------------------------------------------- /Listener/MaintenanceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Listener/MaintenanceListener.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/database.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Resources/config/database.xml -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Resources/doc/index.md -------------------------------------------------------------------------------- /Resources/translations/maintenance.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Resources/translations/maintenance.en.yml -------------------------------------------------------------------------------- /Resources/translations/maintenance.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Resources/translations/maintenance.fr.yml -------------------------------------------------------------------------------- /Tests/EventListener/MaintenanceListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/EventListener/MaintenanceListenerTest.php -------------------------------------------------------------------------------- /Tests/EventListener/MaintenanceListenerTestWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/EventListener/MaintenanceListenerTestWrapper.php -------------------------------------------------------------------------------- /Tests/Maintenance/DriverFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/Maintenance/DriverFactoryTest.php -------------------------------------------------------------------------------- /Tests/Maintenance/FileMaintenanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/Maintenance/FileMaintenanceTest.php -------------------------------------------------------------------------------- /Tests/Maintenance/MemCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/Maintenance/MemCacheTest.php -------------------------------------------------------------------------------- /Tests/Maintenance/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/Maintenance/TestCase.php -------------------------------------------------------------------------------- /Tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/TestCase.php -------------------------------------------------------------------------------- /Tests/TestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/Tests/TestHelper.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikMaintenanceBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------