├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CacheWarmer └── AspectCacheWarmer.php ├── Command ├── CacheWarmupCommand.php ├── DebugAdvisorCommand.php └── DebugAspectCommand.php ├── DependencyInjection ├── Compiler │ └── AspectCollectorPass.php ├── Configuration.php └── GoAopExtension.php ├── GoAopBundle.php ├── Kernel └── AspectSymfonyKernel.php ├── README.md ├── Resources ├── config │ ├── commands.xml │ ├── schema │ │ └── configuration-1.0.0.xsd │ └── services.xml └── meta │ └── LICENSE ├── Tests ├── CacheWarmer │ └── AspectCacheWarmerTest.php ├── Command │ ├── CacheWarmupCommandTest.php │ ├── DebugAdvisorCommandTest.php │ └── DebugAspectCommandTest.php ├── DependencyInjection │ ├── Compiler │ │ └── AspectCollectorPassTest.php │ ├── ConfigurationTest.php │ └── GoAopExtensionTest.php ├── Fixtures │ ├── config │ │ ├── empty.xml │ │ ├── full.xml │ │ └── full.yml │ ├── mock │ │ ├── AopComposerLoader.php │ │ └── DebugClassLoader.php │ └── project │ │ ├── app │ │ ├── AppKernel.php │ │ └── config │ │ │ └── config.yml │ │ ├── bin │ │ └── console │ │ ├── src │ │ ├── Annotation │ │ │ └── Loggable.php │ │ ├── Application │ │ │ └── Main.php │ │ └── Aspect │ │ │ └── LoggingAspect.php │ │ └── var │ │ ├── cache │ │ └── .gitkeep │ │ └── logs │ │ └── .gitkeep ├── GoAopBundleTest.php └── Kernel │ └── AspectSymfonyKernelTest.php ├── composer.json ├── composer.lock └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /CacheWarmer/AspectCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/CacheWarmer/AspectCacheWarmer.php -------------------------------------------------------------------------------- /Command/CacheWarmupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Command/CacheWarmupCommand.php -------------------------------------------------------------------------------- /Command/DebugAdvisorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Command/DebugAdvisorCommand.php -------------------------------------------------------------------------------- /Command/DebugAspectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Command/DebugAspectCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/AspectCollectorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/DependencyInjection/Compiler/AspectCollectorPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/GoAopExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/DependencyInjection/GoAopExtension.php -------------------------------------------------------------------------------- /GoAopBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/GoAopBundle.php -------------------------------------------------------------------------------- /Kernel/AspectSymfonyKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Kernel/AspectSymfonyKernel.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Resources/config/commands.xml -------------------------------------------------------------------------------- /Resources/config/schema/configuration-1.0.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Resources/config/schema/configuration-1.0.0.xsd -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Resources/meta/LICENSE -------------------------------------------------------------------------------- /Tests/CacheWarmer/AspectCacheWarmerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/CacheWarmer/AspectCacheWarmerTest.php -------------------------------------------------------------------------------- /Tests/Command/CacheWarmupCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Command/CacheWarmupCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/DebugAdvisorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Command/DebugAdvisorCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/DebugAspectCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Command/DebugAspectCommandTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Compiler/AspectCollectorPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/DependencyInjection/Compiler/AspectCollectorPassTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/GoAopExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/DependencyInjection/GoAopExtensionTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/config/empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/config/empty.xml -------------------------------------------------------------------------------- /Tests/Fixtures/config/full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/config/full.xml -------------------------------------------------------------------------------- /Tests/Fixtures/config/full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/config/full.yml -------------------------------------------------------------------------------- /Tests/Fixtures/mock/AopComposerLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/mock/AopComposerLoader.php -------------------------------------------------------------------------------- /Tests/Fixtures/mock/DebugClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/mock/DebugClassLoader.php -------------------------------------------------------------------------------- /Tests/Fixtures/project/app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/project/app/AppKernel.php -------------------------------------------------------------------------------- /Tests/Fixtures/project/app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/project/app/config/config.yml -------------------------------------------------------------------------------- /Tests/Fixtures/project/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/project/bin/console -------------------------------------------------------------------------------- /Tests/Fixtures/project/src/Annotation/Loggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/project/src/Annotation/Loggable.php -------------------------------------------------------------------------------- /Tests/Fixtures/project/src/Application/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/project/src/Application/Main.php -------------------------------------------------------------------------------- /Tests/Fixtures/project/src/Aspect/LoggingAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Fixtures/project/src/Aspect/LoggingAspect.php -------------------------------------------------------------------------------- /Tests/Fixtures/project/var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Fixtures/project/var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/GoAopBundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/GoAopBundleTest.php -------------------------------------------------------------------------------- /Tests/Kernel/AspectSymfonyKernelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/Tests/Kernel/AspectSymfonyKernelTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goaop/goaop-symfony-bundle/HEAD/phpunit.xml --------------------------------------------------------------------------------