├── GLOSSARY.md ├── README.md ├── SUMMARY.md ├── a_contrastive_analysis_of_classic_mvc_and_symfony.md ├── assets └── 01-workflow.png ├── big_picture.md ├── book.json ├── core_components.md ├── diy_event_driven_framework.md ├── play_with_event_system.md └── references.md /GLOSSARY.md: -------------------------------------------------------------------------------- 1 | # Glossary 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /a_contrastive_analysis_of_classic_mvc_and_symfony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/a_contrastive_analysis_of_classic_mvc_and_symfony.md -------------------------------------------------------------------------------- /assets/01-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/assets/01-workflow.png -------------------------------------------------------------------------------- /big_picture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/big_picture.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /core_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/core_components.md -------------------------------------------------------------------------------- /diy_event_driven_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/diy_event_driven_framework.md -------------------------------------------------------------------------------- /play_with_event_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/play_with_event_system.md -------------------------------------------------------------------------------- /references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rswork/symfony-event-driven-kernel/HEAD/references.md --------------------------------------------------------------------------------