├── .gitignore ├── .travis.yml ├── DependencyInjection ├── Configuration.php └── DunglasActionExtension.php ├── DunglasActionBundle.php ├── LICENSE ├── README.md ├── Tests ├── AutomaticRegistrationTest.php ├── DependencyInjection │ └── ConfigurationTest.php ├── Fixtures │ ├── AnonymousAction │ │ └── AnAnonymousAction.php │ ├── IsolatedAction │ │ └── AnIsolatedAction.php │ ├── NotScannedBundle │ │ ├── Controller │ │ │ └── MyController.php │ │ └── NotScannedBundle.php │ ├── TestBundle │ │ ├── Action │ │ │ ├── AbstractAction.php │ │ │ ├── DummyAction.php │ │ │ ├── MultiController.php │ │ │ ├── OverrideAction.php │ │ │ ├── RouteAnnotationAction.php │ │ │ ├── SensioFrameworkExtraAction.php │ │ │ └── SetterAction.php │ │ ├── Command │ │ │ ├── Bar.php │ │ │ └── FooCommand.php │ │ ├── Controller │ │ │ └── HelloController.php │ │ ├── DummyService.php │ │ ├── EventSubscriber │ │ │ └── MySubscriber.php │ │ ├── TestBundle.php │ │ └── Twig │ │ │ └── DummyExtension.php │ └── TestKernel.php ├── FunctionalTest.php └── bootstrap.php ├── UPGRADE.md ├── appveyor.yml ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/DunglasActionExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/DependencyInjection/DunglasActionExtension.php -------------------------------------------------------------------------------- /DunglasActionBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/DunglasActionBundle.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/README.md -------------------------------------------------------------------------------- /Tests/AutomaticRegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/AutomaticRegistrationTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/AnonymousAction/AnAnonymousAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/AnonymousAction/AnAnonymousAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/IsolatedAction/AnIsolatedAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/IsolatedAction/AnIsolatedAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/NotScannedBundle/Controller/MyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/NotScannedBundle/Controller/MyController.php -------------------------------------------------------------------------------- /Tests/Fixtures/NotScannedBundle/NotScannedBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/NotScannedBundle/NotScannedBundle.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/AbstractAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/AbstractAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/DummyAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/DummyAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/MultiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/MultiController.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/OverrideAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/OverrideAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/RouteAnnotationAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/RouteAnnotationAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/SensioFrameworkExtraAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/SensioFrameworkExtraAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Action/SetterAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Action/SetterAction.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Command/Bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Command/Bar.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Command/FooCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Command/FooCommand.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Controller/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Controller/HelloController.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/DummyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/DummyService.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/EventSubscriber/MySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/EventSubscriber/MySubscriber.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/TestBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/TestBundle.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestBundle/Twig/DummyExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestBundle/Twig/DummyExtension.php -------------------------------------------------------------------------------- /Tests/Fixtures/TestKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/Fixtures/TestKernel.php -------------------------------------------------------------------------------- /Tests/FunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/FunctionalTest.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/appveyor.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunglas/DunglasActionBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------