├── .bootstrap.php.dist ├── .gitignore ├── Command ├── RestartCommand.php ├── RunCommand.php ├── StartCommand.php ├── StopCommand.php ├── Test1Command.php ├── Test2Command.php ├── Test3Command.php └── Test4Command.php ├── Controller ├── DefaultController.php ├── HistoryController.php ├── JobController.php └── ScheduledJobController.php ├── DependencyInjection ├── Configuration.php └── NineThousandJobqueueExtension.php ├── Entity ├── Arg.php ├── History.php ├── Job.php ├── Param.php └── Tag.php ├── Form ├── ArgType.php ├── JobType.php ├── ParamType.php ├── ScheduledJobType.php └── TagType.php ├── NineThousandJobqueueBundle.php ├── README.md ├── Repository └── JobRepository.php ├── Resources ├── config │ ├── example.config.yml │ ├── jobqueue.xml │ ├── routing.xml │ └── routing │ │ ├── history.xml │ │ ├── job.xml │ │ └── scheduledjob.xml ├── public │ ├── css │ │ ├── smoothness │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.13.custom.css │ │ └── style.css │ ├── favicon.ico │ ├── images │ │ └── gear-icon.png │ └── javascripts │ │ ├── jobqueue.js │ │ ├── jquery-1.5.1.min.js │ │ ├── jquery-ui-1.8.13.custom.min.js │ │ └── jquery.livequery.js └── views │ ├── Default │ └── index.html.twig │ ├── History │ └── index.html.twig │ ├── Job │ ├── index.html.twig │ ├── new.html.twig │ └── show.html.twig │ ├── ScheduledJob │ ├── index.html.twig │ ├── new.html.twig │ └── show.html.twig │ ├── ajax.html.twig │ ├── footer.html.twig │ ├── layout.html.twig │ ├── menu.html.twig │ └── pagination.html.twig ├── Tests ├── Controller │ ├── ArgControllerTest.php │ ├── JobControllerTest.php │ ├── ParamControllerTest.php │ └── TagControllerTest.php ├── Fixtures │ ├── History │ │ ├── LoadHistoryTestData.php │ │ └── LoadStandardHistoryTestData.php │ ├── Job │ │ ├── LoadJobTestData.php │ │ └── LoadJobqueueControlTestData.php │ └── LoadTestData.php ├── History │ └── StandardHistoryTest.php ├── Service │ └── JobqueueControlTest.php └── Util │ └── CronParserTest.php ├── Vendor └── Doctrine │ └── Adapter │ └── Job │ └── Symfony2DoctrineJobAdapter.php └── phpunit.xml.dist /.bootstrap.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/.bootstrap.php.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bootstrap.php 2 | phpunit.xml 3 | -------------------------------------------------------------------------------- /Command/RestartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/RestartCommand.php -------------------------------------------------------------------------------- /Command/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/RunCommand.php -------------------------------------------------------------------------------- /Command/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/StartCommand.php -------------------------------------------------------------------------------- /Command/StopCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/StopCommand.php -------------------------------------------------------------------------------- /Command/Test1Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/Test1Command.php -------------------------------------------------------------------------------- /Command/Test2Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/Test2Command.php -------------------------------------------------------------------------------- /Command/Test3Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/Test3Command.php -------------------------------------------------------------------------------- /Command/Test4Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Command/Test4Command.php -------------------------------------------------------------------------------- /Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Controller/DefaultController.php -------------------------------------------------------------------------------- /Controller/HistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Controller/HistoryController.php -------------------------------------------------------------------------------- /Controller/JobController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Controller/JobController.php -------------------------------------------------------------------------------- /Controller/ScheduledJobController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Controller/ScheduledJobController.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/NineThousandJobqueueExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/DependencyInjection/NineThousandJobqueueExtension.php -------------------------------------------------------------------------------- /Entity/Arg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Entity/Arg.php -------------------------------------------------------------------------------- /Entity/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Entity/History.php -------------------------------------------------------------------------------- /Entity/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Entity/Job.php -------------------------------------------------------------------------------- /Entity/Param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Entity/Param.php -------------------------------------------------------------------------------- /Entity/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Entity/Tag.php -------------------------------------------------------------------------------- /Form/ArgType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Form/ArgType.php -------------------------------------------------------------------------------- /Form/JobType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Form/JobType.php -------------------------------------------------------------------------------- /Form/ParamType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Form/ParamType.php -------------------------------------------------------------------------------- /Form/ScheduledJobType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Form/ScheduledJobType.php -------------------------------------------------------------------------------- /Form/TagType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Form/TagType.php -------------------------------------------------------------------------------- /NineThousandJobqueueBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/NineThousandJobqueueBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/README.md -------------------------------------------------------------------------------- /Repository/JobRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Repository/JobRepository.php -------------------------------------------------------------------------------- /Resources/config/example.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/config/example.config.yml -------------------------------------------------------------------------------- /Resources/config/jobqueue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/config/jobqueue.xml -------------------------------------------------------------------------------- /Resources/config/routing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/config/routing.xml -------------------------------------------------------------------------------- /Resources/config/routing/history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/config/routing/history.xml -------------------------------------------------------------------------------- /Resources/config/routing/job.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/config/routing/job.xml -------------------------------------------------------------------------------- /Resources/config/routing/scheduledjob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/config/routing/scheduledjob.xml -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Resources/public/css/smoothness/jquery-ui-1.8.13.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/smoothness/jquery-ui-1.8.13.custom.css -------------------------------------------------------------------------------- /Resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/css/style.css -------------------------------------------------------------------------------- /Resources/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/favicon.ico -------------------------------------------------------------------------------- /Resources/public/images/gear-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/images/gear-icon.png -------------------------------------------------------------------------------- /Resources/public/javascripts/jobqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/javascripts/jobqueue.js -------------------------------------------------------------------------------- /Resources/public/javascripts/jquery-1.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/javascripts/jquery-1.5.1.min.js -------------------------------------------------------------------------------- /Resources/public/javascripts/jquery-ui-1.8.13.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/javascripts/jquery-ui-1.8.13.custom.min.js -------------------------------------------------------------------------------- /Resources/public/javascripts/jquery.livequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/public/javascripts/jquery.livequery.js -------------------------------------------------------------------------------- /Resources/views/Default/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/Default/index.html.twig -------------------------------------------------------------------------------- /Resources/views/History/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/History/index.html.twig -------------------------------------------------------------------------------- /Resources/views/Job/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/Job/index.html.twig -------------------------------------------------------------------------------- /Resources/views/Job/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/Job/new.html.twig -------------------------------------------------------------------------------- /Resources/views/Job/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/Job/show.html.twig -------------------------------------------------------------------------------- /Resources/views/ScheduledJob/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/ScheduledJob/index.html.twig -------------------------------------------------------------------------------- /Resources/views/ScheduledJob/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/ScheduledJob/new.html.twig -------------------------------------------------------------------------------- /Resources/views/ScheduledJob/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/ScheduledJob/show.html.twig -------------------------------------------------------------------------------- /Resources/views/ajax.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/ajax.html.twig -------------------------------------------------------------------------------- /Resources/views/footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/footer.html.twig -------------------------------------------------------------------------------- /Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /Resources/views/menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/menu.html.twig -------------------------------------------------------------------------------- /Resources/views/pagination.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Resources/views/pagination.html.twig -------------------------------------------------------------------------------- /Tests/Controller/ArgControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Controller/ArgControllerTest.php -------------------------------------------------------------------------------- /Tests/Controller/JobControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Controller/JobControllerTest.php -------------------------------------------------------------------------------- /Tests/Controller/ParamControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Controller/ParamControllerTest.php -------------------------------------------------------------------------------- /Tests/Controller/TagControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Controller/TagControllerTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/History/LoadHistoryTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Fixtures/History/LoadHistoryTestData.php -------------------------------------------------------------------------------- /Tests/Fixtures/History/LoadStandardHistoryTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Fixtures/History/LoadStandardHistoryTestData.php -------------------------------------------------------------------------------- /Tests/Fixtures/Job/LoadJobTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Fixtures/Job/LoadJobTestData.php -------------------------------------------------------------------------------- /Tests/Fixtures/Job/LoadJobqueueControlTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Fixtures/Job/LoadJobqueueControlTestData.php -------------------------------------------------------------------------------- /Tests/Fixtures/LoadTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Fixtures/LoadTestData.php -------------------------------------------------------------------------------- /Tests/History/StandardHistoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/History/StandardHistoryTest.php -------------------------------------------------------------------------------- /Tests/Service/JobqueueControlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Service/JobqueueControlTest.php -------------------------------------------------------------------------------- /Tests/Util/CronParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Tests/Util/CronParserTest.php -------------------------------------------------------------------------------- /Vendor/Doctrine/Adapter/Job/Symfony2DoctrineJobAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/Vendor/Doctrine/Adapter/Job/Symfony2DoctrineJobAdapter.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninethousand/NineThousandJobqueueBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------