├── .coveralls.yml ├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── Command ├── ExecuteCommand.php ├── MonitorCommand.php ├── StartSchedulerCommand.php ├── StopSchedulerCommand.php └── UnlockCommand.php ├── Controller ├── BaseController.php ├── DetailController.php └── ListController.php ├── DependencyInjection ├── Configuration.php └── JMoseCommandSchedulerExtension.php ├── Entity ├── Repository │ └── ScheduledCommandRepository.php └── ScheduledCommand.php ├── Fixtures └── ORM │ └── LoadScheduledCommandData.php ├── Form └── Type │ ├── CommandChoiceType.php │ └── ScheduledCommandType.php ├── JMoseCommandSchedulerBundle.php ├── README.md ├── Resources ├── config │ ├── doctrine │ │ └── ScheduledCommand.orm.xml │ ├── routing.yml │ ├── services.yml │ └── validation.yml ├── doc │ ├── images │ │ ├── command-list.png │ │ ├── new-schedule.png │ │ └── scheduled-list.png │ └── index.md ├── meta │ └── LICENCE ├── public │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap-confirmation.js │ │ ├── bootstrap-tooltip.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery-1.11.1.min.js ├── translations │ ├── JMoseCommandScheduler.de.xlf │ ├── JMoseCommandScheduler.en.xlf │ ├── JMoseCommandScheduler.es.xlf │ ├── JMoseCommandScheduler.fr.xlf │ ├── JMoseCommandScheduler.nl.xlf │ ├── JMoseCommandScheduler.pt-br.xlf │ ├── validators.de.xlf │ ├── validators.en.xlf │ ├── validators.es.xlf │ ├── validators.fr.xlf │ ├── validators.nl.xlf │ └── validators.pt-br.xlf └── views │ ├── Detail │ └── index.html.twig │ ├── List │ └── index.html.twig │ ├── Navbar │ └── navbar.html.twig │ └── layout.html.twig ├── Service └── CommandParser.php ├── Tests ├── App │ ├── AppKernel.php │ ├── Resources │ │ └── views │ │ │ ├── test_layout.html.twig │ │ │ └── test_layout_host.html.twig │ ├── config │ │ ├── config_test.yml │ │ └── routing.yml │ ├── console │ └── logs │ │ └── .gitignore ├── Command │ ├── ExecuteCommandTest.php │ ├── MonitorCommandTest.php │ ├── StartStopSchedulerCommandTest.php │ └── UnlockCommandTest.php ├── Constraints │ └── CronExpressionValidatorTest.php ├── Controller │ ├── DetailControllerTest.php │ └── ListControllerTest.php ├── DependencyInjection │ ├── JMoseCommandSchedulerExtensionTest.php │ └── configuration_set │ │ ├── config_0.yml │ │ ├── config_1.yml │ │ ├── config_2.yml │ │ ├── result_0.yml │ │ ├── result_1.yml │ │ └── result_2.yml ├── app_test.php └── bootstrap.php ├── Validator └── Constraints │ ├── CronExpression.php │ └── CronExpressionValidator.php ├── composer.json ├── phpunit.xml.dist └── travis-php.ini /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | build/ 4 | .php_cs.cache 5 | -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Command/ExecuteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Command/ExecuteCommand.php -------------------------------------------------------------------------------- /Command/MonitorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Command/MonitorCommand.php -------------------------------------------------------------------------------- /Command/StartSchedulerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Command/StartSchedulerCommand.php -------------------------------------------------------------------------------- /Command/StopSchedulerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Command/StopSchedulerCommand.php -------------------------------------------------------------------------------- /Command/UnlockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Command/UnlockCommand.php -------------------------------------------------------------------------------- /Controller/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Controller/BaseController.php -------------------------------------------------------------------------------- /Controller/DetailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Controller/DetailController.php -------------------------------------------------------------------------------- /Controller/ListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Controller/ListController.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/JMoseCommandSchedulerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/DependencyInjection/JMoseCommandSchedulerExtension.php -------------------------------------------------------------------------------- /Entity/Repository/ScheduledCommandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Entity/Repository/ScheduledCommandRepository.php -------------------------------------------------------------------------------- /Entity/ScheduledCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Entity/ScheduledCommand.php -------------------------------------------------------------------------------- /Fixtures/ORM/LoadScheduledCommandData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Fixtures/ORM/LoadScheduledCommandData.php -------------------------------------------------------------------------------- /Form/Type/CommandChoiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Form/Type/CommandChoiceType.php -------------------------------------------------------------------------------- /Form/Type/ScheduledCommandType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Form/Type/ScheduledCommandType.php -------------------------------------------------------------------------------- /JMoseCommandSchedulerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/JMoseCommandSchedulerBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/doctrine/ScheduledCommand.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/config/doctrine/ScheduledCommand.orm.xml -------------------------------------------------------------------------------- /Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/config/routing.yml -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/config/validation.yml -------------------------------------------------------------------------------- /Resources/doc/images/command-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/doc/images/command-list.png -------------------------------------------------------------------------------- /Resources/doc/images/new-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/doc/images/new-schedule.png -------------------------------------------------------------------------------- /Resources/doc/images/scheduled-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/doc/images/scheduled-list.png -------------------------------------------------------------------------------- /Resources/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/doc/index.md -------------------------------------------------------------------------------- /Resources/meta/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/meta/LICENCE -------------------------------------------------------------------------------- /Resources/public/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Resources/public/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Resources/public/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Resources/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/css/bootstrap.css -------------------------------------------------------------------------------- /Resources/public/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/css/bootstrap.css.map -------------------------------------------------------------------------------- /Resources/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /Resources/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Resources/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Resources/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Resources/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Resources/public/js/bootstrap-confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/js/bootstrap-confirmation.js -------------------------------------------------------------------------------- /Resources/public/js/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/js/bootstrap-tooltip.js -------------------------------------------------------------------------------- /Resources/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/js/bootstrap.js -------------------------------------------------------------------------------- /Resources/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /Resources/public/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/public/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /Resources/translations/JMoseCommandScheduler.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/JMoseCommandScheduler.de.xlf -------------------------------------------------------------------------------- /Resources/translations/JMoseCommandScheduler.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/JMoseCommandScheduler.en.xlf -------------------------------------------------------------------------------- /Resources/translations/JMoseCommandScheduler.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/JMoseCommandScheduler.es.xlf -------------------------------------------------------------------------------- /Resources/translations/JMoseCommandScheduler.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/JMoseCommandScheduler.fr.xlf -------------------------------------------------------------------------------- /Resources/translations/JMoseCommandScheduler.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/JMoseCommandScheduler.nl.xlf -------------------------------------------------------------------------------- /Resources/translations/JMoseCommandScheduler.pt-br.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/JMoseCommandScheduler.pt-br.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/validators.de.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/validators.en.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/validators.es.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/validators.fr.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/validators.nl.xlf -------------------------------------------------------------------------------- /Resources/translations/validators.pt-br.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/translations/validators.pt-br.xlf -------------------------------------------------------------------------------- /Resources/views/Detail/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/views/Detail/index.html.twig -------------------------------------------------------------------------------- /Resources/views/List/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/views/List/index.html.twig -------------------------------------------------------------------------------- /Resources/views/Navbar/navbar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/views/Navbar/navbar.html.twig -------------------------------------------------------------------------------- /Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /Service/CommandParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Service/CommandParser.php -------------------------------------------------------------------------------- /Tests/App/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/AppKernel.php -------------------------------------------------------------------------------- /Tests/App/Resources/views/test_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/Resources/views/test_layout.html.twig -------------------------------------------------------------------------------- /Tests/App/Resources/views/test_layout_host.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/Resources/views/test_layout_host.html.twig -------------------------------------------------------------------------------- /Tests/App/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/config/config_test.yml -------------------------------------------------------------------------------- /Tests/App/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/config/routing.yml -------------------------------------------------------------------------------- /Tests/App/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/console -------------------------------------------------------------------------------- /Tests/App/logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/App/logs/.gitignore -------------------------------------------------------------------------------- /Tests/Command/ExecuteCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Command/ExecuteCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/MonitorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Command/MonitorCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/StartStopSchedulerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Command/StartStopSchedulerCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/UnlockCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Command/UnlockCommandTest.php -------------------------------------------------------------------------------- /Tests/Constraints/CronExpressionValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Constraints/CronExpressionValidatorTest.php -------------------------------------------------------------------------------- /Tests/Controller/DetailControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Controller/DetailControllerTest.php -------------------------------------------------------------------------------- /Tests/Controller/ListControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/Controller/ListControllerTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/JMoseCommandSchedulerExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/DependencyInjection/JMoseCommandSchedulerExtensionTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/configuration_set/config_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/DependencyInjection/configuration_set/config_0.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/configuration_set/config_1.yml: -------------------------------------------------------------------------------- 1 | jmose_command_scheduler: 2 | log_path: build 3 | -------------------------------------------------------------------------------- /Tests/DependencyInjection/configuration_set/config_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/DependencyInjection/configuration_set/config_2.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/configuration_set/result_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/DependencyInjection/configuration_set/result_0.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/configuration_set/result_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/DependencyInjection/configuration_set/result_1.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/configuration_set/result_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/DependencyInjection/configuration_set/result_2.yml -------------------------------------------------------------------------------- /Tests/app_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/app_test.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /Validator/Constraints/CronExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Validator/Constraints/CronExpression.php -------------------------------------------------------------------------------- /Validator/Constraints/CronExpressionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/Validator/Constraints/CronExpressionValidator.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-guyon/CommandSchedulerBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /travis-php.ini: -------------------------------------------------------------------------------- 1 | extension="pcntl.so" 2 | memory_limit = 2G 3 | date.timezone = "Europe/Paris" 4 | --------------------------------------------------------------------------------