├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── scripts │ └── setup-symfony-env.bash └── workflows │ ├── static-analysis.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── Changelog.md ├── Dockerfile ├── LICENSE ├── bin └── console.php ├── composer.json ├── config └── services.php ├── console ├── docker-compose.yml ├── docs └── README.md ├── phpunit.xml.dist ├── psalm.xml ├── public └── .gitignore ├── src ├── Builders │ └── ClientBuilder.php ├── Collector │ └── Neo4jDataCollector.php ├── Decorators │ ├── SymfonyClient.php │ ├── SymfonyDriver.php │ ├── SymfonySession.php │ └── SymfonyTransaction.php ├── DependencyInjection │ ├── Configuration.php │ └── Neo4jExtension.php ├── Event │ ├── FailureEvent.php │ ├── PostRunEvent.php │ ├── PreRunEvent.php │ └── Transaction │ │ ├── PostTransactionBeginEvent.php │ │ ├── PostTransactionCommitEvent.php │ │ ├── PostTransactionRollbackEvent.php │ │ ├── PreTransactionBeginEvent.php │ │ ├── PreTransactionCommitEvent.php │ │ └── PreTransactionRollbackEvent.php ├── EventHandler.php ├── EventListener │ └── Neo4jProfileListener.php ├── Factories │ ├── ClientFactory.php │ ├── StopwatchEventNameFactory.php │ └── SymfonyDriverFactory.php ├── Neo4jBundle.php └── Resources │ ├── public │ ├── css │ │ └── neo4j.css │ ├── images │ │ └── neo4j.svg │ └── js │ │ └── neo4j.js │ └── views │ └── web_profiler.html.twig └── tests ├── App ├── Controller │ ├── TestController.php │ └── Twig │ │ ├── base.html.twig │ │ └── index.html.twig ├── TestKernel.php ├── config │ ├── ci │ │ └── default.yml │ ├── default.yml │ └── routes.yaml └── index.php ├── Application.php ├── Functional ├── IntegrationTest.php └── ProfilerTest.php ├── Unit └── SymfonySessionWriteTransactionTest.php └── bootstrap.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/scripts/setup-symfony-env.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.github/scripts/setup-symfony-env.bash -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/Changelog.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/bin/console.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/config/services.php -------------------------------------------------------------------------------- /console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/console -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/docs/README.md -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/psalm.xml -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/Builders/ClientBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Builders/ClientBuilder.php -------------------------------------------------------------------------------- /src/Collector/Neo4jDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Collector/Neo4jDataCollector.php -------------------------------------------------------------------------------- /src/Decorators/SymfonyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Decorators/SymfonyClient.php -------------------------------------------------------------------------------- /src/Decorators/SymfonyDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Decorators/SymfonyDriver.php -------------------------------------------------------------------------------- /src/Decorators/SymfonySession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Decorators/SymfonySession.php -------------------------------------------------------------------------------- /src/Decorators/SymfonyTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Decorators/SymfonyTransaction.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/Neo4jExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/DependencyInjection/Neo4jExtension.php -------------------------------------------------------------------------------- /src/Event/FailureEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/FailureEvent.php -------------------------------------------------------------------------------- /src/Event/PostRunEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/PostRunEvent.php -------------------------------------------------------------------------------- /src/Event/PreRunEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/PreRunEvent.php -------------------------------------------------------------------------------- /src/Event/Transaction/PostTransactionBeginEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/Transaction/PostTransactionBeginEvent.php -------------------------------------------------------------------------------- /src/Event/Transaction/PostTransactionCommitEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/Transaction/PostTransactionCommitEvent.php -------------------------------------------------------------------------------- /src/Event/Transaction/PostTransactionRollbackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/Transaction/PostTransactionRollbackEvent.php -------------------------------------------------------------------------------- /src/Event/Transaction/PreTransactionBeginEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/Transaction/PreTransactionBeginEvent.php -------------------------------------------------------------------------------- /src/Event/Transaction/PreTransactionCommitEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/Transaction/PreTransactionCommitEvent.php -------------------------------------------------------------------------------- /src/Event/Transaction/PreTransactionRollbackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Event/Transaction/PreTransactionRollbackEvent.php -------------------------------------------------------------------------------- /src/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/EventHandler.php -------------------------------------------------------------------------------- /src/EventListener/Neo4jProfileListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/EventListener/Neo4jProfileListener.php -------------------------------------------------------------------------------- /src/Factories/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Factories/ClientFactory.php -------------------------------------------------------------------------------- /src/Factories/StopwatchEventNameFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Factories/StopwatchEventNameFactory.php -------------------------------------------------------------------------------- /src/Factories/SymfonyDriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Factories/SymfonyDriverFactory.php -------------------------------------------------------------------------------- /src/Neo4jBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Neo4jBundle.php -------------------------------------------------------------------------------- /src/Resources/public/css/neo4j.css: -------------------------------------------------------------------------------- 1 | .bg-red { 2 | background-color: #B0413E; 3 | } 4 | -------------------------------------------------------------------------------- /src/Resources/public/images/neo4j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Resources/public/images/neo4j.svg -------------------------------------------------------------------------------- /src/Resources/public/js/neo4j.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Resources/views/web_profiler.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/src/Resources/views/web_profiler.html.twig -------------------------------------------------------------------------------- /tests/App/Controller/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/Controller/TestController.php -------------------------------------------------------------------------------- /tests/App/Controller/Twig/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/Controller/Twig/base.html.twig -------------------------------------------------------------------------------- /tests/App/Controller/Twig/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/Controller/Twig/index.html.twig -------------------------------------------------------------------------------- /tests/App/TestKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/TestKernel.php -------------------------------------------------------------------------------- /tests/App/config/ci/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/config/ci/default.yml -------------------------------------------------------------------------------- /tests/App/config/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/config/default.yml -------------------------------------------------------------------------------- /tests/App/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/config/routes.yaml -------------------------------------------------------------------------------- /tests/App/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/App/index.php -------------------------------------------------------------------------------- /tests/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/Application.php -------------------------------------------------------------------------------- /tests/Functional/IntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/Functional/IntegrationTest.php -------------------------------------------------------------------------------- /tests/Functional/ProfilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/Functional/ProfilerTest.php -------------------------------------------------------------------------------- /tests/Unit/SymfonySessionWriteTransactionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/Unit/SymfonySessionWriteTransactionTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-symfony/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------