├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── versions.json └── workflows │ ├── callable-flex-cleanup.yml │ ├── callable-flex-update-archived.yml │ ├── callable-flex-update.yml │ ├── callable-qa.yml │ ├── flex-cleanup.yml │ ├── flex-update-archived.yml │ ├── flex-update.yml │ └── qa.yml ├── LICENSE ├── README.rst ├── api-platform ├── admin-pack │ └── 1.0 │ │ ├── assets │ │ └── js │ │ │ └── admin.js │ │ ├── config │ │ └── routes │ │ │ └── api_platform_admin.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── templates │ │ └── admin.html.twig ├── api-pack │ └── 1.0 │ │ └── manifest.json ├── core │ ├── 2.1 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── api_platform.yaml │ │ │ └── routes │ │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ └── Entity │ │ │ └── .gitignore │ ├── 2.5 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── api_platform.yaml │ │ │ └── routes │ │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ └── Entity │ │ │ └── .gitignore │ ├── 3.0 │ │ ├── config │ │ │ └── routes │ │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ └── ApiResource │ │ │ └── .gitignore │ ├── 3.1 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── api_platform.yaml │ │ │ └── routes │ │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ └── ApiResource │ │ │ └── .gitignore │ ├── 3.2 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── api_platform.yaml │ │ │ └── routes │ │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ └── ApiResource │ │ │ └── .gitignore │ ├── 3.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── api_platform.yaml │ │ │ └── routes │ │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ └── ApiResource │ │ │ └── .gitignore │ └── 4.0 │ │ ├── config │ │ ├── packages │ │ │ └── api_platform.yaml │ │ └── routes │ │ │ └── api_platform.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ └── ApiResource │ │ └── .gitignore └── symfony │ ├── 3.3 │ ├── config │ │ ├── packages │ │ │ └── api_platform.yaml │ │ └── routes │ │ │ └── api_platform.yaml │ ├── manifest.json │ ├── post-install.txt │ └── src │ │ └── ApiResource │ │ └── .gitignore │ └── 4.0 │ ├── config │ ├── packages │ │ └── api_platform.yaml │ └── routes │ │ └── api_platform.yaml │ ├── manifest.json │ ├── post-install.txt │ └── src │ └── ApiResource │ └── .gitignore ├── blackfireio └── blackfire-symfony-meta │ └── 1.0 │ ├── .blackfire.yaml │ ├── manifest.json │ └── post-install.txt ├── doctrine ├── annotations │ ├── 1.0 │ │ ├── config │ │ │ └── routes │ │ │ │ └── annotations.yaml │ │ └── manifest.json │ └── 1.10 │ │ └── manifest.json ├── deprecations │ └── 1.0 │ │ └── manifest.json ├── doctrine-bundle │ ├── 1.12 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── doctrine.yaml │ │ │ │ └── prod │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 1.6 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── doctrine.yaml │ │ │ │ └── prod │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.0 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── doctrine.yaml │ │ │ │ └── prod │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.10 │ │ ├── config │ │ │ └── packages │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.12 │ │ ├── config │ │ │ └── packages │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.13 │ │ ├── config │ │ │ └── packages │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.3 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── prod │ │ │ │ └── doctrine.yaml │ │ │ │ └── test │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.4 │ │ ├── config │ │ │ └── packages │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ ├── 2.8 │ │ ├── config │ │ │ └── packages │ │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ │ ├── Entity │ │ │ └── .gitignore │ │ │ └── Repository │ │ │ └── .gitignore │ └── 2.9 │ │ ├── config │ │ └── packages │ │ │ └── doctrine.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── src │ │ ├── Entity │ │ └── .gitignore │ │ └── Repository │ │ └── .gitignore ├── doctrine-fixtures-bundle │ └── 3.0 │ │ ├── manifest.json │ │ └── src │ │ └── DataFixtures │ │ └── AppFixtures.php └── doctrine-migrations-bundle │ ├── 1.2 │ ├── config │ │ └── packages │ │ │ └── doctrine_migrations.yaml │ ├── manifest.json │ └── migrations │ │ └── .gitignore │ ├── 2.2 │ ├── config │ │ └── packages │ │ │ └── doctrine_migrations.yaml │ ├── manifest.json │ └── migrations │ │ └── .gitignore │ └── 3.1 │ ├── config │ └── packages │ │ └── doctrine_migrations.yaml │ ├── manifest.json │ └── migrations │ └── .gitignore ├── easycorp └── easyadmin-bundle │ ├── 1.17 │ ├── config │ │ ├── packages │ │ │ └── easy_admin.yaml │ │ └── routes │ │ │ └── easy_admin.yaml │ └── manifest.json │ ├── 2.0 │ ├── config │ │ ├── packages │ │ │ └── easy_admin.yaml │ │ └── routes │ │ │ └── easy_admin.yaml │ └── manifest.json │ ├── 3.0 │ └── manifest.json │ └── 4.14 │ ├── config │ └── routes │ │ └── easyadmin.yaml │ └── manifest.json ├── friendsofphp └── php-cs-fixer │ ├── 2.16 │ ├── .php_cs.dist │ └── manifest.json │ ├── 2.17 │ ├── .php_cs.dist │ └── manifest.json │ ├── 2.19 │ ├── .php-cs-fixer.dist.php │ └── manifest.json │ ├── 2.2 │ ├── .php_cs.dist │ └── manifest.json │ └── 3.0 │ ├── .php-cs-fixer.dist.php │ └── manifest.json ├── hautelook └── alice-bundle │ ├── 2.1 │ ├── config │ │ └── packages │ │ │ ├── dev │ │ │ └── hautelook_alice.yaml │ │ │ └── test │ │ │ └── hautelook_alice.yaml │ ├── fixtures │ │ └── .gitignore │ ├── manifest.json │ └── post-install.txt │ └── 2.2 │ ├── config │ └── packages │ │ └── hautelook_alice.yaml │ ├── fixtures │ └── .gitignore │ ├── manifest.json │ └── post-install.txt ├── javiereguiluz └── easyadmin-bundle │ ├── 1.16 │ ├── config │ │ ├── packages │ │ │ └── easy_admin.yaml │ │ └── routes │ │ │ └── easy_admin.yaml │ └── manifest.json │ └── 1.17 │ ├── config │ ├── packages │ │ └── easy_admin.yaml │ └── routes │ │ └── easy_admin.yaml │ └── manifest.json ├── league ├── flysystem-bundle │ └── 1.0 │ │ ├── config │ │ └── packages │ │ │ └── flysystem.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ └── var │ │ └── storage │ │ └── .gitignore └── oauth2-server-bundle │ ├── 0.11 │ ├── config │ │ ├── packages │ │ │ └── league_oauth2_server.yaml │ │ └── routes │ │ │ └── league_oauth2_server.yaml │ ├── manifest.json │ └── post-install.txt │ └── 0.4 │ ├── config │ ├── packages │ │ └── league_oauth2_server.yaml │ └── routes │ │ └── league_oauth2_server.yaml │ ├── manifest.json │ └── post-install.txt ├── lexik └── jwt-authentication-bundle │ ├── 2.3 │ ├── config │ │ └── packages │ │ │ └── lexik_jwt_authentication.yaml │ └── manifest.json │ └── 2.5 │ ├── config │ └── packages │ │ └── lexik_jwt_authentication.yaml │ └── manifest.json ├── nelmio ├── alice │ ├── 3.2 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── dev │ │ │ │ └── nelmio_alice.yaml │ │ │ │ └── test │ │ │ │ └── nelmio_alice.yaml │ │ └── manifest.json │ └── 3.3 │ │ ├── config │ │ └── packages │ │ │ └── nelmio_alice.yaml │ │ └── manifest.json ├── cors-bundle │ └── 1.5 │ │ ├── config │ │ └── packages │ │ │ └── nelmio_cors.yaml │ │ └── manifest.json └── security-bundle │ └── 2.4 │ ├── config │ └── packages │ │ └── nelmio_security.yaml │ └── manifest.json ├── nyholm └── psr7 │ └── 1.0 │ ├── config │ └── packages │ │ └── nyholm_psr7.yaml │ └── manifest.json ├── php-cs-fixer └── shim │ └── 3.0 │ ├── .php-cs-fixer.dist.php │ └── manifest.json ├── php-http └── discovery │ └── 1.18 │ ├── config │ └── packages │ │ └── http_discovery.yaml │ └── manifest.json ├── phpunit └── phpunit │ ├── 10.0 │ ├── .env.test │ ├── manifest.json │ ├── phpunit.dist.xml │ └── tests │ │ └── bootstrap.php │ ├── 11.1 │ ├── .env.test │ ├── bin │ │ └── phpunit │ ├── manifest.json │ ├── phpunit.dist.xml │ ├── post-install.txt │ └── tests │ │ └── bootstrap.php │ ├── 4.7 │ ├── .env.test │ ├── manifest.json │ ├── phpunit.xml.dist │ └── tests │ │ └── bootstrap.php │ ├── 9.3 │ ├── .env.test │ ├── manifest.json │ ├── phpunit.xml.dist │ └── tests │ │ └── bootstrap.php │ └── 9.6 │ ├── .env.test │ ├── manifest.json │ ├── phpunit.xml.dist │ └── tests │ └── bootstrap.php ├── scheb └── 2fa-bundle │ ├── 5.0 │ ├── config │ │ ├── packages │ │ │ └── scheb_2fa.yaml │ │ └── routes │ │ │ └── scheb_2fa.yaml │ └── manifest.json │ └── 6.0 │ ├── config │ ├── packages │ │ └── scheb_2fa.yaml │ └── routes │ │ └── scheb_2fa.yaml │ └── manifest.json ├── sensio └── framework-extra-bundle │ ├── 4.0 │ └── manifest.json │ └── 5.2 │ ├── config │ └── packages │ │ └── sensio_framework_extra.yaml │ └── manifest.json ├── sensiolabs ├── ansi-to-html │ └── 1.2 │ │ ├── config │ │ └── packages │ │ │ └── ansi_to_html.yaml │ │ └── manifest.json └── security-checker │ └── 4.0 │ ├── config │ └── packages │ │ └── security_checker.yaml │ └── manifest.json ├── symfony ├── aha-send-mailer │ └── 7.2 │ │ └── manifest.json ├── all-my-sms-notifier │ └── 5.3 │ │ └── manifest.json ├── allmysms-notifier │ └── 5.3 │ │ └── manifest.json ├── amazon-mailer │ ├── 4.3 │ │ └── manifest.json │ └── 4.4 │ │ └── manifest.json ├── amazon-sns-notifier │ └── 5.4 │ │ └── manifest.json ├── amqp-pack │ └── 1.0 │ │ └── manifest.json ├── asset-mapper │ ├── 6.3 │ │ ├── assets │ │ │ ├── app.js │ │ │ └── styles │ │ │ │ └── app.css │ │ ├── config │ │ │ └── packages │ │ │ │ └── asset_mapper.yaml │ │ ├── importmap.php │ │ └── manifest.json │ └── 6.4 │ │ ├── assets │ │ ├── app.js │ │ └── styles │ │ │ └── app.css │ │ ├── config │ │ └── packages │ │ │ └── asset_mapper.yaml │ │ ├── importmap.php │ │ └── manifest.json ├── azure-mailer │ └── 7.1 │ │ └── manifest.json ├── bandwidth-notifier │ └── 6.3 │ │ └── manifest.json ├── bluesky-notifier │ └── 7.1 │ │ └── manifest.json ├── brevo-mailer │ └── 6.4 │ │ └── manifest.json ├── brevo-notifier │ └── 6.4 │ │ └── manifest.json ├── chatwork-notifier │ └── 6.2 │ │ └── manifest.json ├── click-send-notifier │ └── 6.3 │ │ └── manifest.json ├── clickatell-notifier │ └── 5.3 │ │ └── manifest.json ├── console │ ├── 3.3 │ │ ├── bin │ │ │ └── console │ │ ├── config │ │ │ └── bootstrap.php │ │ └── manifest.json │ ├── 4.2 │ │ ├── bin │ │ │ └── console │ │ ├── config │ │ │ └── bootstrap.php │ │ └── manifest.json │ ├── 4.4 │ │ ├── bin │ │ │ └── console │ │ ├── config │ │ │ └── bootstrap.php │ │ └── manifest.json │ ├── 5.1 │ │ ├── bin │ │ │ └── console │ │ └── manifest.json │ └── 5.3 │ │ ├── bin │ │ └── console │ │ └── manifest.json ├── crowdin-translation-provider │ └── 5.3 │ │ └── manifest.json ├── debug-bundle │ ├── 3.3 │ │ └── manifest.json │ ├── 4.1 │ │ ├── config │ │ │ └── packages │ │ │ │ └── dev │ │ │ │ └── debug.yaml │ │ └── manifest.json │ └── 5.3 │ │ ├── config │ │ └── packages │ │ │ └── debug.yaml │ │ └── manifest.json ├── debug-pack │ └── 1.0 │ │ └── manifest.json ├── discord-notifier │ └── 5.2 │ │ └── manifest.json ├── engagespot-notifier │ └── 6.1 │ │ └── manifest.json ├── esendex-notifier │ └── 5.2 │ │ └── manifest.json ├── expo-notifier │ └── 5.4 │ │ └── manifest.json ├── fake-chat-notifier │ └── 5.3 │ │ └── manifest.json ├── fake-sms-notifier │ └── 5.3 │ │ └── manifest.json ├── firebase-notifier │ └── 5.1 │ │ └── manifest.json ├── flex │ ├── 1.0 │ │ ├── .env │ │ └── manifest.json │ └── 2.4 │ │ ├── .env │ │ ├── .env.dev │ │ └── manifest.json ├── form │ └── 7.2 │ │ ├── config │ │ └── packages │ │ │ └── csrf.yaml │ │ └── manifest.json ├── forty-six-elks-notifier │ └── 6.1 │ │ └── manifest.json ├── framework-bundle │ ├── 3.3 │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── test │ │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 3.4 │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── test │ │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 4.2 │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── test │ │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 4.4 │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── test │ │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── dev │ │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 5.1 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── test │ │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── dev │ │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 5.2 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ ├── framework.yaml │ │ │ │ └── test │ │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── dev │ │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 5.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 5.4 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 6.2 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 6.4 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 7.0 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ ├── 7.2 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── cache.yaml │ │ │ │ └── framework.yaml │ │ │ ├── preload.php │ │ │ ├── routes │ │ │ │ └── framework.yaml │ │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ │ └── index.php │ │ └── src │ │ │ ├── Controller │ │ │ └── .gitignore │ │ │ └── Kernel.php │ └── 7.3 │ │ ├── .editorconfig │ │ ├── config │ │ ├── packages │ │ │ ├── cache.yaml │ │ │ └── framework.yaml │ │ ├── preload.php │ │ ├── routes │ │ │ └── framework.yaml │ │ └── services.yaml │ │ ├── manifest.json │ │ ├── post-install.txt │ │ ├── public │ │ └── index.php │ │ └── src │ │ ├── Controller │ │ └── .gitignore │ │ └── Kernel.php ├── free-mobile-notifier │ └── 5.1 │ │ └── manifest.json ├── gateway-api-notifier │ └── 5.3 │ │ └── manifest.json ├── gatewayapi-notifier │ └── 5.3 │ │ └── manifest.json ├── gitter-notifier │ └── 5.3 │ │ └── manifest.json ├── go-ip-notifier │ └── 6.4 │ │ └── manifest.json ├── google-chat-notifier │ ├── 5.2 │ │ └── manifest.json │ └── 5.3 │ │ └── manifest.json ├── google-mailer │ ├── 4.3 │ │ └── manifest.json │ └── 4.4 │ │ └── manifest.json ├── infobip-mailer │ └── 6.2 │ │ └── manifest.json ├── infobip-notifier │ └── 5.2 │ │ └── manifest.json ├── iqsms-notifier │ └── 5.3 │ │ └── manifest.json ├── isendpro-notifier │ └── 6.3 │ │ └── manifest.json ├── joli-notif-notifier │ └── 7.2 │ │ └── manifest.json ├── kaz-info-teh-notifier │ └── 6.1 │ │ └── manifest.json ├── light-sms-notifier │ └── 5.3 │ │ └── manifest.json ├── line-bot-notifier │ └── 7.2 │ │ └── manifest.json ├── line-notify-notifier │ └── 6.3 │ │ └── manifest.json ├── linked-in-notifier │ └── 5.2 │ │ └── manifest.json ├── lock │ ├── 4.4 │ │ ├── config │ │ │ └── packages │ │ │ │ └── lock.yaml │ │ └── manifest.json │ └── 5.2 │ │ ├── config │ │ └── packages │ │ │ └── lock.yaml │ │ └── manifest.json ├── loco-translation-provider │ └── 5.3 │ │ └── manifest.json ├── lokalise-translation-provider │ └── 5.3 │ │ └── manifest.json ├── lox24-notifier │ └── 7.1 │ │ └── manifest.json ├── mail-pace-mailer │ └── 6.2 │ │ └── manifest.json ├── mailchimp-mailer │ ├── 4.3 │ │ └── manifest.json │ └── 4.4 │ │ └── manifest.json ├── mailer-send-mailer │ └── 6.3 │ │ └── manifest.json ├── mailer │ └── 4.3 │ │ ├── config │ │ └── packages │ │ │ └── mailer.yaml │ │ ├── manifest.json │ │ └── post-install.txt ├── mailgun-mailer │ ├── 4.3 │ │ └── manifest.json │ └── 4.4 │ │ └── manifest.json ├── mailjet-mailer │ └── 5.2 │ │ └── manifest.json ├── mailjet-notifier │ └── 5.4 │ │ └── manifest.json ├── mailomat-mailer │ └── 7.2 │ │ └── manifest.json ├── mailtrap-mailer │ └── 7.2 │ │ └── manifest.json ├── maker-bundle │ └── 1.0 │ │ └── manifest.json ├── mastodon-notifier │ └── 6.3 │ │ └── manifest.json ├── matrix-notifier │ └── 7.3 │ │ └── manifest.json ├── mattermost-notifier │ └── 5.1 │ │ └── manifest.json ├── mercure-bundle │ ├── 0.1 │ │ ├── config │ │ │ └── packages │ │ │ │ └── mercure.yaml │ │ └── manifest.json │ ├── 0.2 │ │ ├── config │ │ │ └── packages │ │ │ │ └── mercure.yaml │ │ └── manifest.json │ └── 0.3 │ │ ├── config │ │ └── packages │ │ │ └── mercure.yaml │ │ └── manifest.json ├── mercure-notifier │ └── 5.3 │ │ └── manifest.json ├── message-bird-notifier │ └── 5.3 │ │ └── manifest.json ├── message-media-notifier │ └── 5.4 │ │ └── manifest.json ├── messenger │ ├── 4.1 │ │ ├── config │ │ │ └── packages │ │ │ │ └── messenger.yaml │ │ ├── manifest.json │ │ └── post-install.txt │ ├── 4.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── messenger.yaml │ │ ├── manifest.json │ │ └── post-install.txt │ ├── 5.4 │ │ ├── config │ │ │ └── packages │ │ │ │ └── messenger.yaml │ │ ├── manifest.json │ │ └── post-install.txt │ └── 6.0 │ │ ├── config │ │ └── packages │ │ │ └── messenger.yaml │ │ ├── manifest.json │ │ └── post-install.txt ├── microsoft-teams-notifier │ └── 5.3 │ │ └── manifest.json ├── mobyt-notifier │ └── 5.2 │ │ └── manifest.json ├── monolog-bundle │ ├── 3.1 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── dev │ │ │ │ └── monolog.yaml │ │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ └── monolog.yaml │ │ │ │ └── test │ │ │ │ └── monolog.yaml │ │ └── manifest.json │ ├── 3.3 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── dev │ │ │ │ └── monolog.yaml │ │ │ │ ├── prod │ │ │ │ ├── deprecations.yaml │ │ │ │ └── monolog.yaml │ │ │ │ └── test │ │ │ │ └── monolog.yaml │ │ └── manifest.json │ └── 3.7 │ │ ├── config │ │ └── packages │ │ │ └── monolog.yaml │ │ └── manifest.json ├── nexmo-notifier │ └── 5.0 │ │ └── manifest.json ├── notifier │ └── 5.0 │ │ ├── config │ │ └── packages │ │ │ └── notifier.yaml │ │ └── manifest.json ├── novu-notifier │ └── 6.4 │ │ └── manifest.json ├── ntfy-notifier │ └── 6.4 │ │ └── manifest.json ├── octopush-notifier │ └── 5.3 │ │ └── manifest.json ├── one-signal-notifier │ └── 5.4 │ │ └── manifest.json ├── orange-sms-notifier │ └── 6.1 │ │ └── manifest.json ├── orm-pack │ └── 1.0 │ │ └── manifest.json ├── ovh-cloud-notifier │ └── 5.1 │ │ └── manifest.json ├── pager-duty-notifier │ └── 6.3 │ │ └── manifest.json ├── panther │ └── 1.0 │ │ ├── manifest.json │ │ └── post-install.txt ├── phpunit-bridge │ ├── 3.3 │ │ ├── .env.test │ │ ├── bin │ │ │ └── phpunit │ │ ├── manifest.json │ │ ├── phpunit.xml.dist │ │ ├── post-install.txt │ │ └── tests │ │ │ └── bootstrap.php │ ├── 4.1 │ │ ├── .env.test │ │ ├── bin │ │ │ └── phpunit │ │ ├── manifest.json │ │ ├── phpunit.xml.dist │ │ ├── post-install.txt │ │ └── tests │ │ │ └── bootstrap.php │ ├── 4.3 │ │ ├── .env.test │ │ ├── bin │ │ │ └── phpunit │ │ ├── manifest.json │ │ ├── phpunit.xml.dist │ │ ├── post-install.txt │ │ └── tests │ │ │ └── bootstrap.php │ ├── 5.1 │ │ ├── .env.test │ │ ├── bin │ │ │ └── phpunit │ │ ├── manifest.json │ │ ├── phpunit.xml.dist │ │ ├── post-install.txt │ │ └── tests │ │ │ └── bootstrap.php │ ├── 5.3 │ │ ├── .env.test │ │ ├── bin │ │ │ └── phpunit │ │ ├── manifest.json │ │ ├── phpunit.xml.dist │ │ ├── post-install.txt │ │ └── tests │ │ │ └── bootstrap.php │ ├── 6.3 │ │ ├── .env.test │ │ ├── bin │ │ │ └── phpunit │ │ ├── manifest.json │ │ ├── phpunit.xml.dist │ │ ├── post-install.txt │ │ └── tests │ │ │ └── bootstrap.php │ └── 7.3 │ │ └── manifest.json ├── phrase-translation-provider │ └── 6.4 │ │ └── manifest.json ├── plivo-notifier │ └── 6.3 │ │ └── manifest.json ├── postal-mailer │ └── 7.2 │ │ └── manifest.json ├── postmark-mailer │ ├── 4.3 │ │ └── manifest.json │ └── 4.4 │ │ └── manifest.json ├── primotexto-notifier │ └── 7.2 │ │ └── manifest.json ├── profiler-pack │ └── 1.0 │ │ └── manifest.json ├── property-info │ └── 7.3 │ │ ├── config │ │ └── packages │ │ │ └── property_info.yaml │ │ └── manifest.json ├── psr7-pack │ └── 1.0 │ │ ├── config │ │ └── packages │ │ │ └── psr_http_message_bridge.yaml │ │ └── manifest.json ├── pushover-notifier │ └── 6.3 │ │ └── manifest.json ├── pushy-notifier │ └── 7.1 │ │ └── manifest.json ├── redlink-notifier │ └── 6.4 │ │ └── manifest.json ├── requirements-checker │ ├── 1.0 │ │ ├── manifest.json │ │ └── public │ │ │ └── check.php │ └── 2.0 │ │ └── manifest.json ├── resend-mailer │ └── 7.1 │ │ └── manifest.json ├── ring-central-notifier │ └── 6.3 │ │ └── manifest.json ├── rocket-chat-notifier │ └── 5.1 │ │ └── manifest.json ├── routing │ ├── 3.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── prod │ │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 4.0 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── prod │ │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 4.2 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── prod │ │ │ │ │ └── routing.yaml │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 5.1 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── prod │ │ │ │ │ └── routing.yaml │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 5.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 6.0 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 6.1 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ ├── 6.2 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── routing.yaml │ │ │ └── routes.yaml │ │ └── manifest.json │ └── 7.0 │ │ ├── config │ │ ├── packages │ │ │ └── routing.yaml │ │ └── routes.yaml │ │ └── manifest.json ├── scaleway-mailer │ └── 6.4 │ │ └── manifest.json ├── scheduler │ └── 7.2 │ │ ├── manifest.json │ │ └── src │ │ └── Schedule.php ├── security-bundle │ ├── 3.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── security.yaml │ │ └── manifest.json │ ├── 4.4 │ │ ├── config │ │ │ └── packages │ │ │ │ └── security.yaml │ │ └── manifest.json │ ├── 5.1 │ │ ├── config │ │ │ └── packages │ │ │ │ └── security.yaml │ │ └── manifest.json │ ├── 5.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── security.yaml │ │ └── manifest.json │ ├── 6.0 │ │ ├── config │ │ │ └── packages │ │ │ │ └── security.yaml │ │ └── manifest.json │ └── 6.4 │ │ ├── config │ │ ├── packages │ │ │ └── security.yaml │ │ └── routes │ │ │ └── security.yaml │ │ └── manifest.json ├── sendberry-notifier │ └── 6.1 │ │ └── manifest.json ├── sendgrid-mailer │ ├── 4.3 │ │ └── manifest.json │ └── 4.4 │ │ └── manifest.json ├── sendinblue-mailer │ └── 5.2 │ │ └── manifest.json ├── sendinblue-notifier │ └── 5.2 │ │ └── manifest.json ├── serializer-pack │ └── 1.0 │ │ └── manifest.json ├── sevenio-notifier │ └── 7.1 │ │ └── manifest.json ├── simple-textin-notifier │ └── 6.3 │ │ └── manifest.json ├── sinch-notifier │ └── 5.1 │ │ └── manifest.json ├── sipgate-notifier │ └── 7.2 │ │ └── manifest.json ├── slack-notifier │ ├── 5.0 │ │ └── manifest.json │ ├── 5.1 │ │ └── manifest.json │ └── 5.2 │ │ └── manifest.json ├── sms-biuras-notifier │ └── 5.3 │ │ └── manifest.json ├── sms-factor-notifier │ └── 6.2 │ │ └── manifest.json ├── sms-sluzba-notifier │ └── 6.4 │ │ └── manifest.json ├── sms77-notifier │ └── 5.4 │ │ └── manifest.json ├── smsapi-notifier │ └── 5.2 │ │ └── manifest.json ├── smsbox-notifier │ └── 7.1 │ │ └── manifest.json ├── smsc-notifier │ └── 5.4 │ │ └── manifest.json ├── smsense-notifier │ └── 7.1 │ │ └── manifest.json ├── smsmode-notifier │ └── 6.3 │ │ └── manifest.json ├── spot-hit-notifier │ └── 5.3 │ │ └── manifest.json ├── stimulus-bundle │ ├── 2.13 │ │ ├── assets │ │ │ ├── bootstrap.js │ │ │ ├── controllers.json │ │ │ └── controllers │ │ │ │ └── hello_controller.js │ │ └── manifest.json │ ├── 2.20 │ │ ├── assets │ │ │ ├── bootstrap.js │ │ │ ├── controllers.json │ │ │ └── controllers │ │ │ │ ├── csrf_protection_controller.js │ │ │ │ └── hello_controller.js │ │ └── manifest.json │ ├── 2.8 │ │ └── manifest.json │ └── 2.9 │ │ ├── assets │ │ ├── bootstrap.js │ │ ├── controllers.json │ │ └── controllers │ │ │ └── hello_controller.js │ │ └── manifest.json ├── sweego-mailer │ └── 7.2 │ │ └── manifest.json ├── sweego-notifier │ └── 7.2 │ │ └── manifest.json ├── swiftmailer-bundle │ └── 2.5 │ │ ├── config │ │ └── packages │ │ │ ├── dev │ │ │ └── swiftmailer.yaml │ │ │ ├── swiftmailer.yaml │ │ │ └── test │ │ │ └── swiftmailer.yaml │ │ └── manifest.json ├── telegram-notifier │ └── 5.0 │ │ └── manifest.json ├── telnyx-notifier │ └── 5.4 │ │ └── manifest.json ├── termii-notifier │ └── 6.3 │ │ └── manifest.json ├── test-pack │ └── 1.0 │ │ └── manifest.json ├── translation │ ├── 3.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── translation.yaml │ │ ├── manifest.json │ │ └── translations │ │ │ └── .gitignore │ ├── 5.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── translation.yaml │ │ ├── manifest.json │ │ └── translations │ │ │ └── .gitignore │ └── 6.3 │ │ ├── config │ │ └── packages │ │ │ └── translation.yaml │ │ ├── manifest.json │ │ └── translations │ │ └── .gitignore ├── turbo-sms-notifier │ └── 5.4 │ │ └── manifest.json ├── twig-bundle │ ├── 3.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── test │ │ │ │ │ └── twig.yaml │ │ │ │ └── twig.yaml │ │ │ └── routes │ │ │ │ └── dev │ │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ │ └── base.html.twig │ ├── 4.4 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── test │ │ │ │ └── twig.yaml │ │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ │ └── base.html.twig │ ├── 5.0 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── test │ │ │ │ └── twig.yaml │ │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ │ └── base.html.twig │ ├── 5.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ │ └── base.html.twig │ ├── 5.4 │ │ ├── config │ │ │ └── packages │ │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ │ └── base.html.twig │ ├── 6.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ │ └── base.html.twig │ └── 6.4 │ │ ├── config │ │ └── packages │ │ │ └── twig.yaml │ │ ├── manifest.json │ │ └── templates │ │ └── base.html.twig ├── twig-pack │ └── 1.0 │ │ └── manifest.json ├── twilio-notifier │ └── 5.0 │ │ └── manifest.json ├── twitter-notifier │ └── 6.3 │ │ └── manifest.json ├── uid │ ├── 6.2 │ │ ├── config │ │ │ └── packages │ │ │ │ └── uid.yaml │ │ └── manifest.json │ └── 7.0 │ │ └── manifest.json ├── unifonic-notifier │ └── 7.1 │ │ └── manifest.json ├── ux-autocomplete │ ├── 2.2 │ │ ├── config │ │ │ └── routes │ │ │ │ └── ux_autocomplete.yaml │ │ └── manifest.json │ └── 2.6 │ │ ├── config │ │ └── routes │ │ │ └── ux_autocomplete.yaml │ │ └── manifest.json ├── ux-google-map │ ├── 2.19 │ │ ├── manifest.json │ │ └── post-install.txt │ └── 2.22 │ │ ├── manifest.json │ │ └── post-install.txt ├── ux-icons │ └── 2.17 │ │ ├── assets │ │ └── icons │ │ │ └── symfony.svg │ │ └── manifest.json ├── ux-lazy-image │ ├── 2.17 │ │ ├── config │ │ │ └── packages │ │ │ │ └── lazy_image.yaml │ │ └── manifest.json │ └── 2.18 │ │ ├── config │ │ └── packages │ │ │ └── lazy_image.yaml │ │ └── manifest.json ├── ux-leaflet-map │ └── 2.19 │ │ ├── manifest.json │ │ └── post-install.txt ├── ux-live-component │ ├── 2.0 │ │ ├── config │ │ │ └── routes │ │ │ │ └── ux_live_component.yaml │ │ └── manifest.json │ └── 2.6 │ │ ├── config │ │ └── routes │ │ │ └── ux_live_component.yaml │ │ └── manifest.json ├── ux-map │ └── 2.19 │ │ ├── config │ │ └── packages │ │ │ └── ux_map.yaml │ │ ├── manifest.json │ │ └── post-install.txt ├── ux-react │ ├── 2.8 │ │ └── manifest.json │ └── 2.9 │ │ ├── assets │ │ └── react │ │ │ └── controllers │ │ │ └── Hello.jsx │ │ └── manifest.json ├── ux-svelte │ ├── 2.8 │ │ └── manifest.json │ └── 2.9 │ │ ├── assets │ │ └── svelte │ │ │ └── controllers │ │ │ └── Hello.svelte │ │ └── manifest.json ├── ux-translator │ ├── 2.8 │ │ ├── assets │ │ │ └── translator.js │ │ ├── config │ │ │ └── packages │ │ │ │ └── ux_translator.yaml │ │ └── manifest.json │ └── 2.9 │ │ ├── assets │ │ └── translator.js │ │ ├── config │ │ └── packages │ │ │ └── ux_translator.yaml │ │ ├── manifest.json │ │ └── var │ │ └── translations │ │ ├── configuration.js │ │ └── index.js ├── ux-turbo │ ├── 2.19 │ │ └── manifest.json │ └── 2.20 │ │ └── manifest.json ├── ux-twig-component │ └── 2.13 │ │ ├── config │ │ └── packages │ │ │ └── twig_component.yaml │ │ └── manifest.json ├── ux-vue │ ├── 2.8 │ │ └── manifest.json │ └── 2.9 │ │ ├── assets │ │ └── vue │ │ │ └── controllers │ │ │ └── Hello.vue │ │ └── manifest.json ├── validator │ ├── 3.3 │ │ └── manifest.json │ ├── 4.1 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── test │ │ │ │ └── validator.yaml │ │ │ │ └── validator.yaml │ │ └── manifest.json │ ├── 4.3 │ │ ├── config │ │ │ └── packages │ │ │ │ ├── test │ │ │ │ └── validator.yaml │ │ │ │ └── validator.yaml │ │ └── manifest.json │ ├── 5.3 │ │ ├── config │ │ │ └── packages │ │ │ │ └── validator.yaml │ │ └── manifest.json │ └── 7.0 │ │ ├── config │ │ └── packages │ │ │ └── validator.yaml │ │ └── manifest.json ├── var-dumper │ └── 3.3 │ │ └── manifest.json ├── vonage-notifier │ └── 5.4 │ │ └── manifest.json ├── web-profiler-bundle │ ├── 3.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ ├── dev │ │ │ │ │ └── web_profiler.yaml │ │ │ │ └── test │ │ │ │ │ └── web_profiler.yaml │ │ │ └── routes │ │ │ │ └── dev │ │ │ │ └── web_profiler.yaml │ │ └── manifest.json │ ├── 5.3 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── web_profiler.yaml │ │ │ └── routes │ │ │ │ └── web_profiler.yaml │ │ └── manifest.json │ ├── 6.1 │ │ ├── config │ │ │ ├── packages │ │ │ │ └── web_profiler.yaml │ │ │ └── routes │ │ │ │ └── web_profiler.yaml │ │ └── manifest.json │ └── 7.3 │ │ ├── config │ │ ├── packages │ │ │ └── web_profiler.yaml │ │ └── routes │ │ │ └── web_profiler.yaml │ │ └── manifest.json ├── web-server-bundle │ └── 3.3 │ │ └── manifest.json ├── webapp-pack │ └── 1.0 │ │ ├── config │ │ └── packages │ │ │ └── messenger.yaml │ │ └── manifest.json ├── webhook │ ├── 6.3 │ │ ├── config │ │ │ └── routes │ │ │ │ └── webhook.yaml │ │ └── manifest.json │ └── 7.3 │ │ ├── config │ │ └── routes │ │ │ └── webhook.yaml │ │ └── manifest.json ├── webpack-encore-bundle │ ├── 1.0 │ │ ├── assets │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── controllers.json │ │ │ ├── controllers │ │ │ │ └── hello_controller.js │ │ │ └── styles │ │ │ │ └── app.css │ │ ├── config │ │ │ └── packages │ │ │ │ ├── assets.yaml │ │ │ │ ├── prod │ │ │ │ └── webpack_encore.yaml │ │ │ │ └── webpack_encore.yaml │ │ ├── manifest.json │ │ ├── package.json │ │ └── webpack.config.js │ ├── 1.10 │ │ ├── assets │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── controllers.json │ │ │ ├── controllers │ │ │ │ └── hello_controller.js │ │ │ └── styles │ │ │ │ └── app.css │ │ ├── config │ │ │ └── packages │ │ │ │ └── webpack_encore.yaml │ │ ├── manifest.json │ │ ├── package.json │ │ ├── post-install.txt │ │ └── webpack.config.js │ ├── 1.6 │ │ ├── assets │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── controllers.json │ │ │ ├── controllers │ │ │ │ └── hello_controller.js │ │ │ └── styles │ │ │ │ └── app.css │ │ ├── config │ │ │ └── packages │ │ │ │ ├── assets.yaml │ │ │ │ ├── prod │ │ │ │ └── webpack_encore.yaml │ │ │ │ ├── test │ │ │ │ └── webpack_encore.yaml │ │ │ │ └── webpack_encore.yaml │ │ ├── manifest.json │ │ ├── package.json │ │ └── webpack.config.js │ ├── 1.9 │ │ ├── assets │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── controllers.json │ │ │ ├── controllers │ │ │ │ └── hello_controller.js │ │ │ └── styles │ │ │ │ └── app.css │ │ ├── config │ │ │ └── packages │ │ │ │ └── webpack_encore.yaml │ │ ├── manifest.json │ │ ├── package.json │ │ ├── post-install.txt │ │ └── webpack.config.js │ └── 2.0 │ │ ├── assets │ │ ├── app.js │ │ └── styles │ │ │ └── app.css │ │ ├── config │ │ └── packages │ │ │ └── webpack_encore.yaml │ │ ├── manifest.json │ │ ├── package.json │ │ ├── post-install.txt │ │ └── webpack.config.js ├── workflow │ └── 3.3 │ │ ├── config │ │ └── packages │ │ │ └── workflow.yaml │ │ └── manifest.json ├── yunpian-notifier │ └── 5.4 │ │ └── manifest.json ├── zendesk-notifier │ └── 6.2 │ │ └── manifest.json └── zulip-notifier │ └── 5.2 │ └── manifest.json ├── symfonycasts ├── reset-password-bundle │ └── 1.0 │ │ ├── config │ │ └── packages │ │ │ └── reset_password.yaml │ │ └── manifest.json └── tailwind-bundle │ └── 0.8 │ ├── config │ └── packages │ │ └── symfonycasts_tailwind.yaml │ └── manifest.json ├── symfonycorp └── platformsh-pack │ └── 1.0 │ └── manifest.json ├── theofidry └── alice-data-fixtures │ └── 1.0 │ └── manifest.json ├── twig ├── cssinliner-extension │ └── 1.0 │ │ └── manifest.json ├── extensions │ └── 1.0 │ │ ├── config │ │ └── packages │ │ │ └── twig_extensions.yaml │ │ └── manifest.json ├── inky-extension │ └── 1.0 │ │ └── manifest.json └── markdown-extension │ └── 1.0 │ └── manifest.json ├── willdurand └── js-translation-bundle │ └── 2.0 │ ├── config │ └── routes │ │ └── js_translation.yaml │ └── manifest.json └── zenstruck ├── browser └── 1.9 │ ├── manifest.json │ └── post-install.txt ├── foundry ├── 1.10 │ ├── config │ │ └── packages │ │ │ └── zenstruck_foundry.yaml │ ├── manifest.json │ └── post-install.txt ├── 1.9 │ ├── config │ │ └── packages │ │ │ ├── dev │ │ │ └── zenstruck_foundry.yaml │ │ │ └── test │ │ │ └── zenstruck_foundry.yaml │ ├── manifest.json │ └── post-install.txt ├── 2.0 │ ├── config │ │ └── packages │ │ │ └── zenstruck_foundry.yaml │ ├── manifest.json │ └── post-install.txt ├── 2.5 │ ├── config │ │ └── packages │ │ │ └── zenstruck_foundry.yaml │ ├── manifest.json │ └── post-install.txt └── 2.6 │ ├── config │ └── packages │ │ └── zenstruck_foundry.yaml │ ├── manifest.json │ ├── post-install.txt │ └── src │ └── Story │ └── AppStory.php └── messenger-test └── 1.7 ├── manifest.json └── post-install.txt /.editorconfig: -------------------------------------------------------------------------------- 1 | ; top-most EditorConfig file 2 | root = true 3 | 4 | ; Unix-style newlines 5 | [*] 6 | end_of_line = LF 7 | 8 | [*.{yml,yaml}] 9 | indent_style = space 10 | indent_size = 4 11 | 12 | [*.json] 13 | indent_style = space 14 | indent_size = 4 15 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | | Q | A 2 | | ------------- | --- 3 | | License | MIT 4 | | Doc issue/PR | symfony/symfony-docs#... 5 | 6 | 9 | -------------------------------------------------------------------------------- /.github/workflows/flex-cleanup.yml: -------------------------------------------------------------------------------- 1 | name: Cleanup Flex testing endpoint 2 | 3 | on: 4 | pull_request_target: 5 | types: [ closed ] 6 | 7 | defaults: 8 | run: 9 | shell: bash 10 | 11 | jobs: 12 | call-flex-cleanup: 13 | uses: symfony/recipes/.github/workflows/callable-flex-cleanup.yml@main 14 | -------------------------------------------------------------------------------- /.github/workflows/flex-update-archived.yml: -------------------------------------------------------------------------------- 1 | name: Update Flex Archives 2 | 3 | on: [workflow_dispatch] 4 | 5 | jobs: 6 | call-flex-update: 7 | uses: symfony/recipes/.github/workflows/callable-flex-update-archived.yml@main 8 | -------------------------------------------------------------------------------- /.github/workflows/flex-update.yml: -------------------------------------------------------------------------------- 1 | name: Update Flex endpoint 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | defaults: 9 | run: 10 | shell: bash 11 | 12 | jobs: 13 | call-flex-update: 14 | uses: symfony/recipes/.github/workflows/callable-flex-update.yml@main 15 | with: 16 | versions_json: .github/versions.json 17 | -------------------------------------------------------------------------------- /.github/workflows/qa.yml: -------------------------------------------------------------------------------- 1 | name: Q&A 2 | 3 | on: 4 | pull_request_target: 5 | 6 | defaults: 7 | run: 8 | shell: bash 9 | 10 | jobs: 11 | call-qa: 12 | uses: symfony/recipes/.github/workflows/callable-qa.yml@main 13 | secrets: 14 | token: ${{ secrets.BOT_TOKEN }} 15 | -------------------------------------------------------------------------------- /api-platform/admin-pack/1.0/assets/js/admin.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import { HydraAdmin } from '@api-platform/admin'; 4 | 5 | const entrypoint = document.getElementById('api-entrypoint').innerText; 6 | 7 | ReactDOM.render(, document.getElementById('api-platform-admin')); 8 | -------------------------------------------------------------------------------- /api-platform/admin-pack/1.0/config/routes/api_platform_admin.yaml: -------------------------------------------------------------------------------- 1 | admin: 2 | path: /admin 3 | controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController 4 | defaults: 5 | template: admin.html.twig 6 | -------------------------------------------------------------------------------- /api-platform/admin-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["api-admin", "api-platform-admin", "react-admin"], 3 | "copy-from-recipe": { 4 | "assets/": "assets/", 5 | "config/": "%CONFIG_DIR%/", 6 | "templates/": "templates/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /api-platform/admin-pack/1.0/templates/admin.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'base.html.twig' %} 2 | 3 | {% block title %}API Platform Admin{% endblock %} 4 | 5 | {% block body %}
{% endblock %} 6 | 7 | {% block javascripts %} 8 | 9 | {{ encore_entry_script_tags('admin') }} 10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /api-platform/api-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["api", "api-platform"] 3 | } 4 | -------------------------------------------------------------------------------- /api-platform/core/2.1/config/packages/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | mapping: 3 | paths: ['%kernel.project_dir%/src/Entity'] 4 | -------------------------------------------------------------------------------- /api-platform/core/2.1/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/2.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/2.1/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/2.1/src/Entity/.gitignore -------------------------------------------------------------------------------- /api-platform/core/2.5/config/packages/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | mapping: 3 | paths: ['%kernel.project_dir%/src/Entity'] 4 | patch_formats: 5 | json: ['application/merge-patch+json'] 6 | swagger: 7 | versions: [3] 8 | -------------------------------------------------------------------------------- /api-platform/core/2.5/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/2.5/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/2.5/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/2.5/src/Entity/.gitignore -------------------------------------------------------------------------------- /api-platform/core/3.0/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/3.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/3.0/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/3.0/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /api-platform/core/3.1/config/packages/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | title: Hello API Platform 3 | version: 1.0.0 4 | # Good defaults for REST APIs 5 | defaults: 6 | stateless: true 7 | cache_headers: 8 | vary: ['Content-Type', 'Authorization', 'Origin'] 9 | extra_properties: 10 | standard_put: true 11 | -------------------------------------------------------------------------------- /api-platform/core/3.1/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/3.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/3.1/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/3.1/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /api-platform/core/3.2/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/3.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/3.2/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/3.2/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /api-platform/core/3.3/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/3.3/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/3.3/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /api-platform/core/4.0/config/packages/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | title: Hello API Platform 3 | version: 1.0.0 4 | defaults: 5 | stateless: true 6 | cache_headers: 7 | vary: ['Content-Type', 'Authorization', 'Origin'] 8 | -------------------------------------------------------------------------------- /api-platform/core/4.0/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/core/4.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/core/4.0/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/core/4.0/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /api-platform/symfony/3.3/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/symfony/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/symfony/3.3/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/symfony/3.3/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /api-platform/symfony/4.0/config/packages/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | title: Hello API Platform 3 | version: 1.0.0 4 | defaults: 5 | stateless: true 6 | cache_headers: 7 | vary: ['Content-Type', 'Authorization', 'Origin'] 8 | -------------------------------------------------------------------------------- /api-platform/symfony/4.0/config/routes/api_platform.yaml: -------------------------------------------------------------------------------- 1 | api_platform: 2 | resource: . 3 | type: api_platform 4 | prefix: /api 5 | -------------------------------------------------------------------------------- /api-platform/symfony/4.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "ApiPlatform\\Symfony\\Bundle\\ApiPlatformBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /api-platform/symfony/4.0/src/ApiResource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/api-platform/symfony/4.0/src/ApiResource/.gitignore -------------------------------------------------------------------------------- /blackfireio/blackfire-symfony-meta/1.0/.blackfire.yaml: -------------------------------------------------------------------------------- 1 | scenarios: | 2 | #!blackfire-player 3 | 4 | scenario 5 | name "Test homepage" 6 | visit url('/') 7 | expect status_code() == 200 8 | -------------------------------------------------------------------------------- /blackfireio/blackfire-symfony-meta/1.0/post-install.txt: -------------------------------------------------------------------------------- 1 | * Blackfire Agent has been configured in your docker-compose.override.yaml file 2 | 3 | * Configure your Blackfire SERVER credentials in .env.local (get them at https://blackfire.io/my/settings/credentials) 4 | 5 | * Install the PHP probe: https://blackfire.io/docs/up-and-running/installation 6 | 7 | * Read the documentation at https://blackfire.io/docs 8 | -------------------------------------------------------------------------------- /doctrine/annotations/1.0/config/routes/annotations.yaml: -------------------------------------------------------------------------------- 1 | controllers: 2 | resource: ../../src/Controller/ 3 | type: annotation 4 | 5 | kernel: 6 | resource: ../../src/Kernel.php 7 | type: annotation 8 | -------------------------------------------------------------------------------- /doctrine/annotations/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /doctrine/annotations/1.10/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "conflict": { 3 | "symfony/routing": "<6.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/1.12/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/1.12/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/1.12/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/1.12/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/1.12/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/1.6/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/1.6/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/1.6/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/1.6/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/1.6/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.0/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.0/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.0/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.0/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.0/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.10/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.10/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.10/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.10/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.10/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.12/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.12/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.12/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.12/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.12/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.13/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.13/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.13/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.13/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.13/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.3/config/packages/test/doctrine.yaml: -------------------------------------------------------------------------------- 1 | doctrine: 2 | dbal: 3 | # "TEST_TOKEN" is typically set by ParaTest 4 | dbname: 'main_test%env(default::TEST_TOKEN)%' 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.3/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.3/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.3/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.3/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.3/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.4/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.4/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.4/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.4/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.4/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.8/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.8/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.8/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.8/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.8/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.9/post-install.txt: -------------------------------------------------------------------------------- 1 | * Modify your DATABASE_URL config in .env 2 | 3 | * Configure the driver (postgresql) and 4 | server_version (16) in config/packages/doctrine.yaml 5 | -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.9/src/Entity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.9/src/Entity/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-bundle/2.9/src/Repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-bundle/2.9/src/Repository/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-fixtures-bundle/3.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["orm-fixtures"], 3 | "bundles": { 4 | "Doctrine\\Bundle\\FixturesBundle\\DoctrineFixturesBundle": ["dev", "test"] 5 | }, 6 | "copy-from-recipe": { 7 | "src/": "%SRC_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /doctrine/doctrine-fixtures-bundle/3.0/src/DataFixtures/AppFixtures.php: -------------------------------------------------------------------------------- 1 | persist($product); 14 | 15 | $manager->flush(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/1.2/config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- 1 | doctrine_migrations: 2 | dir_name: '%kernel.project_dir%/migrations' 3 | # namespace is arbitrary but should be different from App\Migrations 4 | # as migrations classes should NOT be autoloaded 5 | namespace: DoctrineMigrations 6 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/1.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Doctrine\\Bundle\\MigrationsBundle\\DoctrineMigrationsBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "migrations/": "migrations/" 8 | }, 9 | "aliases": ["doctrine-migrations", "migrations"] 10 | } 11 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/1.2/migrations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-migrations-bundle/1.2/migrations/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/2.2/config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- 1 | doctrine_migrations: 2 | migrations_paths: 3 | # namespace is arbitrary but should be different from App\Migrations 4 | # as migrations classes should NOT be autoloaded 5 | 'DoctrineMigrations': '%kernel.project_dir%/migrations' 6 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/2.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Doctrine\\Bundle\\MigrationsBundle\\DoctrineMigrationsBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "migrations/": "migrations/" 8 | }, 9 | "aliases": ["doctrine-migrations", "migrations"] 10 | } 11 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/2.2/migrations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-migrations-bundle/2.2/migrations/.gitignore -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/3.1/config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- 1 | doctrine_migrations: 2 | migrations_paths: 3 | # namespace is arbitrary but should be different from App\Migrations 4 | # as migrations classes should NOT be autoloaded 5 | 'DoctrineMigrations': '%kernel.project_dir%/migrations' 6 | enable_profiler: false 7 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/3.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Doctrine\\Bundle\\MigrationsBundle\\DoctrineMigrationsBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "migrations/": "migrations/" 8 | }, 9 | "aliases": ["doctrine-migrations", "migrations"] 10 | } 11 | -------------------------------------------------------------------------------- /doctrine/doctrine-migrations-bundle/3.1/migrations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/doctrine/doctrine-migrations-bundle/3.1/migrations/.gitignore -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/1.17/config/packages/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | #easy_admin: 2 | # entities: 3 | # # List the entity class name you want to manage 4 | # - App\Entity\Product 5 | # - App\Entity\Category 6 | # - App\Entity\User 7 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/1.17/config/routes/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | easy_admin_bundle: 2 | resource: '@EasyAdminBundle/Controller/AdminController.php' 3 | prefix: /admin 4 | type: annotation 5 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/1.17/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "EasyCorp\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["admin-gen", "admin-generator", "admin"] 9 | } 10 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/2.0/config/packages/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | #easy_admin: 2 | # entities: 3 | # # List the entity class name you want to manage 4 | # - App\Entity\Product 5 | # - App\Entity\Category 6 | # - App\Entity\User 7 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/2.0/config/routes/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | easy_admin_bundle: 2 | resource: '@EasyAdminBundle/Controller/EasyAdminController.php' 3 | prefix: /admin 4 | type: annotation 5 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/2.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "EasyCorp\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["admin-gen", "admin-generator", "admin"] 9 | } 10 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/3.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "EasyCorp\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] 4 | }, 5 | "aliases": ["admin-gen", "admin-generator", "admin"] 6 | } 7 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/4.14/config/routes/easyadmin.yaml: -------------------------------------------------------------------------------- 1 | easyadmin: 2 | resource: . 3 | type: easyadmin.routes 4 | -------------------------------------------------------------------------------- /easycorp/easyadmin-bundle/4.14/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "EasyCorp\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["admin-gen", "admin-generator", "admin"] 9 | } 10 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.16/.php_cs.dist: -------------------------------------------------------------------------------- 1 | in(__DIR__) 5 | ->exclude('var') 6 | ; 7 | 8 | return PhpCsFixer\Config::create() 9 | ->setRules([ 10 | '@Symfony' => true, 11 | ]) 12 | ->setFinder($finder) 13 | ; 14 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.16/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["cs-fixer", "php-cs-fixer"], 3 | "copy-from-recipe": { 4 | ".php_cs.dist": ".php_cs.dist" 5 | }, 6 | "gitignore": [ 7 | "/.php_cs", 8 | "/.php_cs.cache" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.17/.php_cs.dist: -------------------------------------------------------------------------------- 1 | in(__DIR__) 5 | ->exclude('var') 6 | ; 7 | 8 | return (new PhpCsFixer\Config()) 9 | ->setRules([ 10 | '@Symfony' => true, 11 | ]) 12 | ->setFinder($finder) 13 | ; 14 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.17/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["cs-fixer", "php-cs-fixer"], 3 | "copy-from-recipe": { 4 | ".php_cs.dist": ".php_cs.dist" 5 | }, 6 | "gitignore": [ 7 | "/.php_cs", 8 | "/.php_cs.cache" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.19/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in(__DIR__) 5 | ->exclude('var') 6 | ; 7 | 8 | return (new PhpCsFixer\Config()) 9 | ->setRules([ 10 | '@Symfony' => true, 11 | ]) 12 | ->setFinder($finder) 13 | ->setCacheFile('.php-cs-fixer.cache') // forward compatibility with 3.x line 14 | ; 15 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.19/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["cs-fixer", "php-cs-fixer"], 3 | "copy-from-recipe": { 4 | ".php-cs-fixer.dist.php": ".php-cs-fixer.dist.php" 5 | }, 6 | "gitignore": [ 7 | "/.php-cs-fixer.php", 8 | "/.php-cs-fixer.cache" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.2/.php_cs.dist: -------------------------------------------------------------------------------- 1 | in(__DIR__) 5 | ->exclude('var') 6 | ; 7 | 8 | return PhpCsFixer\Config::create() 9 | ->setRules([ 10 | '@Symfony' => true, 11 | 'array_syntax' => ['syntax' => 'short'], 12 | ]) 13 | ->setFinder($finder) 14 | ; 15 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/2.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["cs-fixer", "php-cs-fixer"], 3 | "copy-from-recipe": { 4 | ".php_cs.dist": ".php_cs.dist" 5 | }, 6 | "gitignore": [ 7 | "/.php_cs", 8 | "/.php_cs.cache" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/3.0/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in(__DIR__) 5 | ->exclude('var') 6 | ; 7 | 8 | return (new PhpCsFixer\Config()) 9 | ->setRules([ 10 | '@Symfony' => true, 11 | ]) 12 | ->setFinder($finder) 13 | ; 14 | -------------------------------------------------------------------------------- /friendsofphp/php-cs-fixer/3.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["cs-fixer", "php-cs-fixer"], 3 | "copy-from-recipe": { 4 | ".php-cs-fixer.dist.php": ".php-cs-fixer.dist.php" 5 | }, 6 | "gitignore": [ 7 | "/.php-cs-fixer.php", 8 | "/.php-cs-fixer.cache" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.1/config/packages/dev/hautelook_alice.yaml: -------------------------------------------------------------------------------- 1 | hautelook_alice: 2 | fixtures_path: fixtures 3 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.1/config/packages/test/hautelook_alice.yaml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../dev/hautelook_alice.yaml } 3 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.1/fixtures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/hautelook/alice-bundle/2.1/fixtures/.gitignore -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["alice"], 3 | "bundles": { 4 | "Hautelook\\AliceBundle\\HautelookAliceBundle": ["dev", "test"] 5 | }, 6 | "copy-from-recipe": { 7 | "config/": "%CONFIG_DIR%/", 8 | "fixtures/": "fixtures/" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.1/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write fixtures files in the fixtures/ folder 2 | * Run php bin/console hautelook:fixtures:load 3 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.2/config/packages/hautelook_alice.yaml: -------------------------------------------------------------------------------- 1 | when@dev: &dev 2 | hautelook_alice: 3 | fixtures_path: fixtures 4 | 5 | when@test: *dev 6 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.2/fixtures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/hautelook/alice-bundle/2.2/fixtures/.gitignore -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["alice"], 3 | "bundles": { 4 | "Hautelook\\AliceBundle\\HautelookAliceBundle": ["dev", "test"] 5 | }, 6 | "copy-from-recipe": { 7 | "config/": "%CONFIG_DIR%/", 8 | "fixtures/": "fixtures/" 9 | }, 10 | "conflict": { 11 | "symfony/framework-bundle": "<5.3" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /hautelook/alice-bundle/2.2/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write fixtures files in the fixtures/ folder 2 | * Run php bin/console hautelook:fixtures:load 3 | -------------------------------------------------------------------------------- /javiereguiluz/easyadmin-bundle/1.16/config/packages/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | #easy_admin: 2 | # entities: 3 | # # List the entity class name you want to manage 4 | # - App\Entity\Product 5 | # - App\Entity\Category 6 | # - App\Entity\User 7 | -------------------------------------------------------------------------------- /javiereguiluz/easyadmin-bundle/1.16/config/routes/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | easy_admin_bundle: 2 | resource: '@EasyAdminBundle/Controller/AdminController.php' 3 | prefix: /admin 4 | type: annotation 5 | -------------------------------------------------------------------------------- /javiereguiluz/easyadmin-bundle/1.16/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "JavierEguiluz\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /javiereguiluz/easyadmin-bundle/1.17/config/packages/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | #easy_admin: 2 | # entities: 3 | # # List the entity class name you want to manage 4 | # - App\Entity\Product 5 | # - App\Entity\Category 6 | # - App\Entity\User 7 | -------------------------------------------------------------------------------- /javiereguiluz/easyadmin-bundle/1.17/config/routes/easy_admin.yaml: -------------------------------------------------------------------------------- 1 | easy_admin_bundle: 2 | resource: '@EasyAdminBundle/Controller/AdminController.php' 3 | prefix: /admin 4 | type: annotation 5 | -------------------------------------------------------------------------------- /javiereguiluz/easyadmin-bundle/1.17/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "EasyCorp\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /league/flysystem-bundle/1.0/config/packages/flysystem.yaml: -------------------------------------------------------------------------------- 1 | # Read the documentation at https://github.com/thephpleague/flysystem-bundle/blob/master/docs/1-getting-started.md 2 | flysystem: 3 | storages: 4 | default.storage: 5 | adapter: 'local' 6 | options: 7 | directory: '%kernel.project_dir%/%VAR_DIR%/storage/default' 8 | -------------------------------------------------------------------------------- /league/flysystem-bundle/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "League\\FlysystemBundle\\FlysystemBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/", 7 | "var/": "%VAR_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /league/flysystem-bundle/1.0/post-install.txt: -------------------------------------------------------------------------------- 1 | * Configure your own storages in config/packages/flysystem.yaml. 2 | 3 | * Read the documentation at: 4 | https://github.com/thephpleague/flysystem-bundle/blob/master/docs/1-getting-started.md 5 | -------------------------------------------------------------------------------- /league/flysystem-bundle/1.0/var/storage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/league/flysystem-bundle/1.0/var/storage/.gitignore -------------------------------------------------------------------------------- /league/oauth2-server-bundle/0.11/config/routes/league_oauth2_server.yaml: -------------------------------------------------------------------------------- 1 | league_oauth2_server: 2 | resource: '@LeagueOAuth2ServerBundle/config/routes.php' 3 | type: php 4 | -------------------------------------------------------------------------------- /league/oauth2-server-bundle/0.4/config/routes/league_oauth2_server.yaml: -------------------------------------------------------------------------------- 1 | oauth2_server: 2 | resource: '@LeagueOAuth2ServerBundle/Resources/config/routes.php' 3 | type: php 4 | -------------------------------------------------------------------------------- /lexik/jwt-authentication-bundle/2.3/config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- 1 | lexik_jwt_authentication: 2 | private_key_path: '%kernel.project_dir%/%env(JWT_PRIVATE_KEY_PATH)%' 3 | public_key_path: '%kernel.project_dir%/%env(JWT_PUBLIC_KEY_PATH)%' 4 | pass_phrase: '%env(JWT_PASSPHRASE)%' 5 | -------------------------------------------------------------------------------- /lexik/jwt-authentication-bundle/2.5/config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- 1 | lexik_jwt_authentication: 2 | secret_key: '%env(resolve:JWT_SECRET_KEY)%' 3 | public_key: '%env(resolve:JWT_PUBLIC_KEY)%' 4 | pass_phrase: '%env(JWT_PASSPHRASE)%' 5 | -------------------------------------------------------------------------------- /nelmio/alice/3.2/config/packages/dev/nelmio_alice.yaml: -------------------------------------------------------------------------------- 1 | nelmio_alice: 2 | functions_blacklist: 3 | - 'current' 4 | - 'shuffle' 5 | - 'date' 6 | - 'time' 7 | - 'file' 8 | - 'md5' 9 | - 'sha1' 10 | -------------------------------------------------------------------------------- /nelmio/alice/3.2/config/packages/test/nelmio_alice.yaml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../dev/nelmio_alice.yaml } 3 | -------------------------------------------------------------------------------- /nelmio/alice/3.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Nelmio\\Alice\\Bridge\\Symfony\\NelmioAliceBundle": ["dev", "test"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /nelmio/alice/3.3/config/packages/nelmio_alice.yaml: -------------------------------------------------------------------------------- 1 | when@dev: &dev 2 | nelmio_alice: 3 | functions_blacklist: 4 | - 'current' 5 | - 'shuffle' 6 | - 'date' 7 | - 'time' 8 | - 'file' 9 | - 'md5' 10 | - 'sha1' 11 | 12 | when@test: *dev 13 | -------------------------------------------------------------------------------- /nelmio/alice/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Nelmio\\Alice\\Bridge\\Symfony\\NelmioAliceBundle": ["dev", "test"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<5.3" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /nelmio/cors-bundle/1.5/config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- 1 | nelmio_cors: 2 | defaults: 3 | origin_regex: true 4 | allow_origin: ['%env(CORS_ALLOW_ORIGIN)%'] 5 | allow_methods: ['GET', 'OPTIONS', 'POST', 'PUT', 'PATCH', 'DELETE'] 6 | allow_headers: ['Content-Type', 'Authorization'] 7 | expose_headers: ['Link'] 8 | max_age: 3600 9 | paths: 10 | '^/': null 11 | -------------------------------------------------------------------------------- /nelmio/cors-bundle/1.5/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Nelmio\\CorsBundle\\NelmioCorsBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "env": { 9 | "CORS_ALLOW_ORIGIN": "'^https?://(localhost|127\\.0\\.0\\.1)(:[0-9]+)?$'" 10 | }, 11 | "aliases": ["cors"] 12 | } 13 | -------------------------------------------------------------------------------- /nelmio/security-bundle/2.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Nelmio\\SecurityBundle\\NelmioSecurityBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /nyholm/psr7/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "conflict": { 6 | "php-http/discovery": ">=1.18" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /php-cs-fixer/shim/3.0/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in(__DIR__) 5 | ->exclude('var') 6 | ; 7 | 8 | return (new PhpCsFixer\Config()) 9 | ->setRules([ 10 | '@Symfony' => true, 11 | ]) 12 | ->setFinder($finder) 13 | ; 14 | -------------------------------------------------------------------------------- /php-cs-fixer/shim/3.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["cs-fixer-shim", "php-cs-fixer-shim"], 3 | "copy-from-recipe": { 4 | ".php-cs-fixer.dist.php": ".php-cs-fixer.dist.php" 5 | }, 6 | "gitignore": [ 7 | "/.php-cs-fixer.php", 8 | "/.php-cs-fixer.cache" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /php-http/discovery/1.18/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /phpunit/phpunit/10.0/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | -------------------------------------------------------------------------------- /phpunit/phpunit/10.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "phpunit.dist.xml": "phpunit.dist.xml", 5 | "tests/": "tests/" 6 | }, 7 | "gitignore": [ 8 | "/phpunit.xml", 9 | "/.phpunit.cache/" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /phpunit/phpunit/10.0/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | 11 | if ($_SERVER['APP_DEBUG']) { 12 | umask(0000); 13 | } 14 | -------------------------------------------------------------------------------- /phpunit/phpunit/11.1/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | -------------------------------------------------------------------------------- /phpunit/phpunit/11.1/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Use MakerBundle's make:test command as a shortcut! 3 | * Run the tests with php bin/phpunit 4 | -------------------------------------------------------------------------------- /phpunit/phpunit/11.1/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | 11 | if ($_SERVER['APP_DEBUG']) { 12 | umask(0000); 13 | } 14 | -------------------------------------------------------------------------------- /phpunit/phpunit/4.7/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /phpunit/phpunit/4.7/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "phpunit.xml.dist": "phpunit.xml.dist", 5 | "tests/": "tests/" 6 | }, 7 | "gitignore": [ 8 | "/phpunit.xml", 9 | ".phpunit.result.cache" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /phpunit/phpunit/4.7/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | -------------------------------------------------------------------------------- /phpunit/phpunit/9.3/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /phpunit/phpunit/9.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "phpunit.xml.dist": "phpunit.xml.dist", 5 | "tests/": "tests/" 6 | }, 7 | "gitignore": [ 8 | "/phpunit.xml", 9 | ".phpunit.result.cache" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /phpunit/phpunit/9.3/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | -------------------------------------------------------------------------------- /phpunit/phpunit/9.6/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /phpunit/phpunit/9.6/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "phpunit.xml.dist": "phpunit.xml.dist", 5 | "tests/": "tests/" 6 | }, 7 | "gitignore": [ 8 | "/phpunit.xml", 9 | ".phpunit.result.cache" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /phpunit/phpunit/9.6/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | -------------------------------------------------------------------------------- /scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml: -------------------------------------------------------------------------------- 1 | 2fa_login: 2 | path: /2fa 3 | defaults: 4 | _controller: "scheb_two_factor.form_controller::form" 5 | 6 | 2fa_login_check: 7 | path: /2fa_check 8 | -------------------------------------------------------------------------------- /scheb/2fa-bundle/5.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Scheb\\TwoFactorBundle\\SchebTwoFactorBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["2fa"] 9 | } 10 | -------------------------------------------------------------------------------- /scheb/2fa-bundle/6.0/config/packages/scheb_2fa.yaml: -------------------------------------------------------------------------------- 1 | # See the configuration reference at https://symfony.com/bundles/SchebTwoFactorBundle/6.x/configuration.html 2 | scheb_two_factor: 3 | security_tokens: 4 | - Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken 5 | - Symfony\Component\Security\Http\Authenticator\Token\PostAuthenticationToken 6 | -------------------------------------------------------------------------------- /scheb/2fa-bundle/6.0/config/routes/scheb_2fa.yaml: -------------------------------------------------------------------------------- 1 | 2fa_login: 2 | path: /2fa 3 | defaults: 4 | _controller: "scheb_two_factor.form_controller::form" 5 | 6 | 2fa_login_check: 7 | path: /2fa_check 8 | -------------------------------------------------------------------------------- /scheb/2fa-bundle/6.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Scheb\\TwoFactorBundle\\SchebTwoFactorBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["2fa"] 9 | } 10 | -------------------------------------------------------------------------------- /sensio/framework-extra-bundle/4.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Sensio\\Bundle\\FrameworkExtraBundle\\SensioFrameworkExtraBundle": ["all"] 4 | }, 5 | "aliases": ["annotations", "annotation", "annot", "annots"] 6 | } 7 | -------------------------------------------------------------------------------- /sensio/framework-extra-bundle/5.2/config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- 1 | sensio_framework_extra: 2 | router: 3 | annotations: false 4 | -------------------------------------------------------------------------------- /sensio/framework-extra-bundle/5.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Sensio\\Bundle\\FrameworkExtraBundle\\SensioFrameworkExtraBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["annotations", "annotation", "annot", "annots"] 9 | } 10 | -------------------------------------------------------------------------------- /sensiolabs/ansi-to-html/1.2/config/packages/ansi_to_html.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | autowire: true 4 | autoconfigure: true 5 | 6 | SensioLabs\AnsiConverter\Bridge\Twig\AnsiExtension: null 7 | -------------------------------------------------------------------------------- /sensiolabs/ansi-to-html/1.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /sensiolabs/security-checker/4.0/config/packages/security_checker.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | autowire: true 4 | autoconfigure: true 5 | 6 | SensioLabs\Security\SecurityChecker: null 7 | 8 | SensioLabs\Security\Command\SecurityCheckerCommand: null 9 | -------------------------------------------------------------------------------- /sensiolabs/security-checker/4.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "composer-scripts": { 6 | "security-checker security:check": "script" 7 | }, 8 | "aliases": ["security-check", "security-checker", "sec-checker", "sec-check", "sec-checks"] 9 | } 10 | -------------------------------------------------------------------------------- /symfony/aha-send-mailer/7.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "MAILER_DSN=ahasend+api://KEY@default", 4 | "#2": "MAILER_DSN=ahasend+smtp://USERNAME:PASSWORD@default" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/amazon-mailer/4.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "AWS_ACCESS_KEY=", 4 | "#2": "AWS_SECRET_KEY=", 5 | "#3": "MAILER_DSN=smtp://$AWS_ACCESS_KEY:$AWS_SECRET_KEY@ses?region=eu-west-1", 6 | "#4": "MAILER_DSN=http://$AWS_ACCESS_KEY:$AWS_SECRET_KEY@ses?region=eu-west-1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/amazon-mailer/4.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "MAILER_DSN=ses://ACCESS_KEY:SECRET_KEY@default?region=eu-west-1", 4 | "#2": "MAILER_DSN=ses+smtp://ACCESS_KEY:SECRET_KEY@default?region=eu-west-1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/amqp-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["amqp"] 3 | } 4 | -------------------------------------------------------------------------------- /symfony/asset-mapper/6.3/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * This file will be included onto the page via the importmap() Twig function, 5 | * which should already be in your base.html.twig. 6 | */ 7 | console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉') 8 | -------------------------------------------------------------------------------- /symfony/asset-mapper/6.3/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: skyblue; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/asset-mapper/6.3/config/packages/asset_mapper.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | asset_mapper: 3 | # The paths to make available to the asset mapper. 4 | paths: 5 | - assets/ 6 | -------------------------------------------------------------------------------- /symfony/asset-mapper/6.4/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * This file will be included onto the page via the importmap() Twig function, 5 | * which should already be in your base.html.twig. 6 | */ 7 | import './styles/app.css'; 8 | 9 | console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉'); 10 | -------------------------------------------------------------------------------- /symfony/asset-mapper/6.4/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: skyblue; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/asset-mapper/6.4/config/packages/asset_mapper.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | asset_mapper: 3 | # The paths to make available to the asset mapper. 4 | paths: 5 | - assets/ 6 | missing_import_mode: strict 7 | 8 | when@prod: 9 | framework: 10 | asset_mapper: 11 | missing_import_mode: warn 12 | -------------------------------------------------------------------------------- /symfony/azure-mailer/7.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "MAILER_DSN=azure+api://ACS_RESOURCE_NAME:KEY@default" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/bluesky-notifier/7.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "BLUESKY_DSN=bluesky://USER:PASS@bsky.social" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/brevo-mailer/6.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "MAILER_DSN=brevo+api://KEY@default", 4 | "#2": "MAILER_DSN=brevo+smtp://USERNAME:PASSWORD@default" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/brevo-notifier/6.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "BREVO_DSN=brevo://API_KEY@default?sender=SENDER" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/console/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "bin/": "%BIN_DIR%/", 4 | "config/": "%CONFIG_DIR%/" 5 | }, 6 | "aliases": ["cli"] 7 | } 8 | -------------------------------------------------------------------------------- /symfony/console/4.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "bin/": "%BIN_DIR%/", 4 | "config/": "%CONFIG_DIR%/" 5 | }, 6 | "aliases": ["cli"] 7 | } 8 | -------------------------------------------------------------------------------- /symfony/console/4.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "bin/": "%BIN_DIR%/", 4 | "config/": "%CONFIG_DIR%/" 5 | }, 6 | "aliases": ["cli"] 7 | } 8 | -------------------------------------------------------------------------------- /symfony/console/5.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "bin/": "%BIN_DIR%/" 4 | }, 5 | "aliases": ["cli"] 6 | } 7 | -------------------------------------------------------------------------------- /symfony/console/5.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "bin/": "%BIN_DIR%/" 4 | }, 5 | "aliases": ["cli"] 6 | } 7 | -------------------------------------------------------------------------------- /symfony/debug-bundle/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\DebugBundle\\DebugBundle": ["dev", "test"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/debug-bundle/4.1/config/packages/dev/debug.yaml: -------------------------------------------------------------------------------- 1 | debug: 2 | # Forwards VarDumper Data clones to a centralized server allowing to inspect dumps on CLI or in your browser. 3 | # See the "server:dump" command to start a new server. 4 | dump_destination: "tcp://%env(VAR_DUMPER_SERVER)%" 5 | -------------------------------------------------------------------------------- /symfony/debug-bundle/4.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\DebugBundle\\DebugBundle": ["dev"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/debug-bundle/5.3/config/packages/debug.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | debug: 3 | # Forwards VarDumper Data clones to a centralized server allowing to inspect dumps on CLI or in your browser. 4 | # See the "server:dump" command to start a new server. 5 | dump_destination: "tcp://%env(VAR_DUMPER_SERVER)%" 6 | -------------------------------------------------------------------------------- /symfony/debug-bundle/5.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\DebugBundle\\DebugBundle": ["dev"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<5.3" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /symfony/debug-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["debug"] 3 | } 4 | -------------------------------------------------------------------------------- /symfony/discord-notifier/5.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " chatter_transports:", 8 | "content": " discord: '%env(DISCORD_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "DISCORD_DSN=discord://TOKEN@default?webhook_id=ID" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/expo-notifier/5.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " texter_transports:", 8 | "content": " expo: '%env(EXPO_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "EXPO_DSN=expo://TOKEN@default" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/firebase-notifier/5.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " chatter_transports:", 8 | "content": " firebase: '%env(FIREBASE_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "FIREBASE_DSN=firebase://TOKEN@default" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/flex/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env": ".env" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/flex/2.4/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/flex/2.4/.env.dev -------------------------------------------------------------------------------- /symfony/flex/2.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env": ".env", 4 | ".env.dev": ".env.dev" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/form/7.2/config/packages/csrf.yaml: -------------------------------------------------------------------------------- 1 | # Enable stateless CSRF protection for forms and logins/logouts 2 | framework: 3 | form: 4 | csrf_protection: 5 | token_id: submit 6 | 7 | csrf_protection: 8 | stateless_token_ids: 9 | - submit 10 | - authenticate 11 | - logout 12 | -------------------------------------------------------------------------------- /symfony/form/7.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/framework-bundle/3.3/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | test: true 3 | session: 4 | storage_id: session.storage.mock_file 5 | -------------------------------------------------------------------------------- /symfony/framework-bundle/3.3/post-install.txt: -------------------------------------------------------------------------------- 1 | * Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server, 5 | or run composer require server --dev for a minimalist one 6 | 7 | * Read the documentation at https://symfony.com/doc 8 | -------------------------------------------------------------------------------- /symfony/framework-bundle/3.3/src/Controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/framework-bundle/3.3/src/Controller/.gitignore -------------------------------------------------------------------------------- /symfony/framework-bundle/3.4/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | test: true 3 | session: 4 | storage_id: session.storage.mock_file 5 | -------------------------------------------------------------------------------- /symfony/framework-bundle/3.4/post-install.txt: -------------------------------------------------------------------------------- 1 | * Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server, 5 | or run composer require server --dev for a minimalist one 6 | 7 | * Read the documentation at https://symfony.com/doc 8 | -------------------------------------------------------------------------------- /symfony/framework-bundle/3.4/src/Controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/framework-bundle/3.4/src/Controller/.gitignore -------------------------------------------------------------------------------- /symfony/framework-bundle/4.2/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | test: true 3 | session: 4 | storage_id: session.storage.mock_file 5 | -------------------------------------------------------------------------------- /symfony/framework-bundle/4.2/post-install.txt: -------------------------------------------------------------------------------- 1 | * Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/4.2/src/Controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/framework-bundle/4.2/src/Controller/.gitignore -------------------------------------------------------------------------------- /symfony/framework-bundle/4.4/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | test: true 3 | session: 4 | storage_id: session.storage.mock_file 5 | -------------------------------------------------------------------------------- /symfony/framework-bundle/4.4/config/preload.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/4.4/src/Controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/framework-bundle/4.4/src/Controller/.gitignore -------------------------------------------------------------------------------- /symfony/framework-bundle/5.1/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | test: true 3 | session: 4 | storage_id: session.storage.mock_file 5 | -------------------------------------------------------------------------------- /symfony/framework-bundle/5.1/config/preload.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/5.1/src/Controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/framework-bundle/5.1/src/Controller/.gitignore -------------------------------------------------------------------------------- /symfony/framework-bundle/5.2/config/packages/test/framework.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | test: true 3 | session: 4 | storage_id: session.storage.mock_file 5 | -------------------------------------------------------------------------------- /symfony/framework-bundle/5.2/config/preload.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/5.2/src/Controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/recipes/a5608a5a879578a418203fc7ee487c37b0cee18a/symfony/framework-bundle/5.2/src/Controller/.gitignore -------------------------------------------------------------------------------- /symfony/framework-bundle/5.3/config/preload.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/5.3/public/index.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/5.4/public/index.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/6.2/public/index.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/6.4/public/index.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/7.0/public/index.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/7.2/public/index.php: -------------------------------------------------------------------------------- 1 | Run your application: 2 | 1. Go to the project directory 3 | 2. Create your code repository with the git init command 4 | 3. Download the Symfony CLI at https://symfony.com/download to install a development web server 5 | 6 | * Read the documentation at https://symfony.com/doc 7 | -------------------------------------------------------------------------------- /symfony/framework-bundle/7.3/public/index.php: -------------------------------------------------------------------------------- 1 | ChromeDriver or geckodriver with 2 | the package manager of your Operating System. 3 | 4 | Alternatively, use Browser Driver Installer: 5 | 6 | composer require --dev dbrekelmans/bdi 7 | vendor/bin/bdi detect drivers 8 | 9 | This step is not necessary when using Docker. 10 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/3.3/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "bin/": "%BIN_DIR%/", 5 | "phpunit.xml.dist": "phpunit.xml.dist", 6 | "tests/": "tests/" 7 | }, 8 | "gitignore": [ 9 | ".phpunit", 10 | ".phpunit.result.cache", 11 | "/phpunit.xml" 12 | ], 13 | "aliases": ["simple-phpunit"] 14 | } 15 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/3.3/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Run php bin/phpunit 3 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/3.3/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 11 | } 12 | 13 | if ($_SERVER['APP_DEBUG']) { 14 | umask(0000); 15 | } 16 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.1/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "bin/": "%BIN_DIR%/", 5 | "phpunit.xml.dist": "phpunit.xml.dist", 6 | "tests/": "tests/" 7 | }, 8 | "gitignore": [ 9 | ".phpunit", 10 | ".phpunit.result.cache", 11 | "/phpunit.xml" 12 | ], 13 | "aliases": ["simple-phpunit"] 14 | } 15 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.1/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Run php bin/phpunit 3 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.1/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 11 | } 12 | 13 | if ($_SERVER['APP_DEBUG']) { 14 | umask(0000); 15 | } 16 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.3/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "bin/": "%BIN_DIR%/", 5 | "phpunit.xml.dist": "phpunit.xml.dist", 6 | "tests/": "tests/" 7 | }, 8 | "gitignore": [ 9 | ".phpunit", 10 | ".phpunit.result.cache", 11 | "/phpunit.xml" 12 | ], 13 | "aliases": ["simple-phpunit"] 14 | } 15 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.3/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Run php bin/phpunit 3 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/4.3/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 11 | } 12 | 13 | if ($_SERVER['APP_DEBUG']) { 14 | umask(0000); 15 | } 16 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.1/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "bin/": "%BIN_DIR%/", 5 | "phpunit.xml.dist": "phpunit.xml.dist", 6 | "tests/": "tests/" 7 | }, 8 | "gitignore": [ 9 | ".phpunit", 10 | ".phpunit.result.cache", 11 | "/phpunit.xml" 12 | ], 13 | "aliases": ["simple-phpunit"] 14 | } 15 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.1/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Run php bin/phpunit 3 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.1/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 11 | } 12 | 13 | if ($_SERVER['APP_DEBUG']) { 14 | umask(0000); 15 | } 16 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.3/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | ".env.test": ".env.test", 4 | "bin/": "%BIN_DIR%/", 5 | "phpunit.xml.dist": "phpunit.xml.dist", 6 | "tests/": "tests/" 7 | }, 8 | "gitignore": [ 9 | ".phpunit.result.cache", 10 | "/phpunit.xml" 11 | ], 12 | "conflict": { 13 | "symfony/framework-bundle": "<5.4" 14 | }, 15 | "aliases": ["simple-phpunit"] 16 | } 17 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.3/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Use MakerBundle's make:test command as a shortcut! 3 | * Run the tests with php bin/phpunit 4 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/5.3/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | 11 | if ($_SERVER['APP_DEBUG']) { 12 | umask(0000); 13 | } 14 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/6.3/.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/6.3/post-install.txt: -------------------------------------------------------------------------------- 1 | * Write test cases in the tests/ folder 2 | * Use MakerBundle's make:test command as a shortcut! 3 | * Run the tests with php bin/phpunit 4 | -------------------------------------------------------------------------------- /symfony/phpunit-bridge/6.3/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | bootEnv(dirname(__DIR__).'/.env'); 9 | } 10 | 11 | if ($_SERVER['APP_DEBUG']) { 12 | umask(0000); 13 | } 14 | -------------------------------------------------------------------------------- /symfony/plivo-notifier/6.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " texter_transports:", 8 | "content": " plivo: '%env(PLIVO_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "PLIVO_DSN=plivo://AUTH_ID:AUTH_TOKEN@default?from=FROM" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/postal-mailer/7.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "MAILER_DSN=postal+api://API_TOKEN@BASE_URL", 4 | "#2": "MAILER_DSN=postal://API_TOKEN@BASE_URL" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/postmark-mailer/4.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "#1": "POSTMARK_ID=", 4 | "#2": "MAILER_DSN=smtp://$POSTMARK_ID@postmark" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/postmark-mailer/4.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "target": " texter_transports:", 7 | "content": " postmark: '%env(MAILER_DSN)%'" 8 | } 9 | ], 10 | "env": { 11 | "#1": "MAILER_DSN=postmark://ID@default" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /symfony/profiler-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["profiler", "web-profiler"] 3 | } 4 | -------------------------------------------------------------------------------- /symfony/property-info/7.3/config/packages/property_info.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | property_info: 3 | with_constructor_extractor: true 4 | -------------------------------------------------------------------------------- /symfony/property-info/7.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/psr7-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["psr-7", "psr-17"], 3 | "copy-from-recipe": { 4 | "config/": "%CONFIG_DIR%/" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/pushy-notifier/7.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " texter_transports:", 8 | "content": " pushy: '%env(PUSHY_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "PUSHY_DSN=pushy://API_KEY@default" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/requirements-checker/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "public/": "%PUBLIC_DIR%/" 4 | }, 5 | "composer-scripts": { 6 | "requirements-checker": "script" 7 | }, 8 | "aliases": ["requirement-check", "requirement-checker", "req-checker", "req-check", "req-checks"] 9 | } 10 | -------------------------------------------------------------------------------- /symfony/requirements-checker/1.0/public/check.php: -------------------------------------------------------------------------------- 1 | Read the documentation at https://github.com/symfony/ux/blob/2.x/src/Map/src/Bridge/Google/README.md 2 | -------------------------------------------------------------------------------- /symfony/ux-google-map/2.22/post-install.txt: -------------------------------------------------------------------------------- 1 | * Read the documentation at https://github.com/symfony/ux/blob/2.x/src/Map/src/Bridge/Google/README.md 2 | -------------------------------------------------------------------------------- /symfony/ux-icons/2.17/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\Icons\\UXIconsBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "assets/": "assets/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/ux-lazy-image/2.17/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\LazyImage\\LazyImageBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/ux-lazy-image/2.18/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\LazyImage\\LazyImageBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/ux-leaflet-map/2.19/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "conflict": { 3 | "symfony/flex": "<1.20.0 || >=2.0.0,<2.3.0" 4 | }, 5 | "env": { 6 | "#1": "Options available at https://github.com/symfony/ux/blob/2.x/src/Map/src/Bridge/Leaflet/README.md", 7 | "#2": "", 8 | "UX_MAP_DSN": "leaflet://default" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /symfony/ux-leaflet-map/2.19/post-install.txt: -------------------------------------------------------------------------------- 1 | * Read the documentation at https://github.com/symfony/ux/blob/2.x/src/Map/src/Bridge/Leaflet/README.md 2 | -------------------------------------------------------------------------------- /symfony/ux-live-component/2.0/config/routes/ux_live_component.yaml: -------------------------------------------------------------------------------- 1 | live_component: 2 | resource: '@LiveComponentBundle/Resources/config/routing/live_component.xml' 3 | # uncomment to add localization to your components 4 | #prefix: '/{_locale}' 5 | -------------------------------------------------------------------------------- /symfony/ux-live-component/2.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\LiveComponent\\LiveComponentBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/ux-live-component/2.6/config/routes/ux_live_component.yaml: -------------------------------------------------------------------------------- 1 | live_component: 2 | resource: '@LiveComponentBundle/config/routes.php' 3 | prefix: '/_components' 4 | # adjust prefix to add localization to your components 5 | #prefix: '/{_locale}/_components' 6 | -------------------------------------------------------------------------------- /symfony/ux-live-component/2.6/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\LiveComponent\\LiveComponentBundle": ["all"] 4 | }, 5 | "aliases": ["live-component"], 6 | "copy-from-recipe": { 7 | "config/": "%CONFIG_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /symfony/ux-map/2.19/config/packages/ux_map.yaml: -------------------------------------------------------------------------------- 1 | ux_map: 2 | # https://symfony.com/bundles/ux-map/current/index.html#available-renderers 3 | renderer: '%env(resolve:default::UX_MAP_DSN)%' 4 | -------------------------------------------------------------------------------- /symfony/ux-map/2.19/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\Map\\UXMapBundle": ["all"] 4 | }, 5 | "conflict": { 6 | "symfony/flex": "<1.20.0 || >=2.0.0,<2.3.0" 7 | }, 8 | "copy-from-recipe": { 9 | "config/": "%CONFIG_DIR%/" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /symfony/ux-react/2.8/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\React\\ReactBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/ux-react/2.9/assets/react/controllers/Hello.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default function (props) { 4 | return
Hello {props.fullName}
; 5 | } 6 | -------------------------------------------------------------------------------- /symfony/ux-svelte/2.8/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\Svelte\\SvelteBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/ux-svelte/2.9/assets/svelte/controllers/Hello.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
Hello {name}
6 | -------------------------------------------------------------------------------- /symfony/ux-translator/2.8/config/packages/ux_translator.yaml: -------------------------------------------------------------------------------- 1 | ux_translator: 2 | # The directory where the JavaScript translations are dumped 3 | dump_directory: '%kernel.project_dir%/var/translations' 4 | -------------------------------------------------------------------------------- /symfony/ux-translator/2.8/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\Translator\\UxTranslatorBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "assets/": "assets/", 7 | "config/": "%CONFIG_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /symfony/ux-translator/2.9/config/packages/ux_translator.yaml: -------------------------------------------------------------------------------- 1 | ux_translator: 2 | # The directory where the JavaScript translations are dumped 3 | dump_directory: '%kernel.project_dir%/var/translations' 4 | -------------------------------------------------------------------------------- /symfony/ux-translator/2.9/var/translations/configuration.js: -------------------------------------------------------------------------------- 1 | export const localeFallbacks = {}; 2 | 3 | console.log('Run bin/console cache:warmup to generate the translation files.'); 4 | -------------------------------------------------------------------------------- /symfony/ux-translator/2.9/var/translations/index.js: -------------------------------------------------------------------------------- 1 | console.log('Run bin/console cache:warmup to generate the translation files.'); 2 | -------------------------------------------------------------------------------- /symfony/ux-turbo/2.19/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\Turbo\\TurboBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/ux-twig-component/2.13/config/packages/twig_component.yaml: -------------------------------------------------------------------------------- 1 | twig_component: 2 | anonymous_template_directory: 'components/' 3 | defaults: 4 | # Namespace & directory for components 5 | App\Twig\Components\: 'components/' 6 | -------------------------------------------------------------------------------- /symfony/ux-twig-component/2.13/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\TwigComponent\\TwigComponentBundle": ["all"] 4 | }, 5 | "aliases": ["twig-component"], 6 | "copy-from-recipe": { 7 | "config/": "%CONFIG_DIR%/" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /symfony/ux-vue/2.8/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\UX\\Vue\\VueBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/ux-vue/2.9/assets/vue/controllers/Hello.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /symfony/validator/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["validation"] 3 | } 4 | -------------------------------------------------------------------------------- /symfony/validator/4.1/config/packages/test/validator.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | # As of Symfony 4.3 you can disable the NotCompromisedPassword Validator 4 | # not_compromised_password: false 5 | -------------------------------------------------------------------------------- /symfony/validator/4.1/config/packages/validator.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | email_validation_mode: html5 4 | -------------------------------------------------------------------------------- /symfony/validator/4.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "aliases": ["validation"] 6 | } 7 | -------------------------------------------------------------------------------- /symfony/validator/4.3/config/packages/test/validator.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | not_compromised_password: false 4 | -------------------------------------------------------------------------------- /symfony/validator/4.3/config/packages/validator.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | email_validation_mode: html5 4 | 5 | # Enables validator auto-mapping support. 6 | # For instance, basic validation constraints will be inferred from Doctrine's metadata. 7 | #auto_mapping: 8 | # App\Entity\: [] 9 | -------------------------------------------------------------------------------- /symfony/validator/4.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "aliases": ["validation"] 6 | } 7 | -------------------------------------------------------------------------------- /symfony/validator/5.3/config/packages/validator.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | email_validation_mode: html5 4 | 5 | # Enables validator auto-mapping support. 6 | # For instance, basic validation constraints will be inferred from Doctrine's metadata. 7 | #auto_mapping: 8 | # App\Entity\: [] 9 | 10 | when@test: 11 | framework: 12 | validation: 13 | not_compromised_password: false 14 | -------------------------------------------------------------------------------- /symfony/validator/5.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "aliases": ["validation"], 6 | "conflict": { 7 | "symfony/framework-bundle": "<5.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /symfony/validator/7.0/config/packages/validator.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | validation: 3 | # Enables validator auto-mapping support. 4 | # For instance, basic validation constraints will be inferred from Doctrine's metadata. 5 | #auto_mapping: 6 | # App\Entity\: [] 7 | 8 | when@test: 9 | framework: 10 | validation: 11 | not_compromised_password: false 12 | -------------------------------------------------------------------------------- /symfony/validator/7.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "aliases": ["validation"], 6 | "conflict": { 7 | "symfony/framework-bundle": "<7.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /symfony/var-dumper/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["dump"] 3 | } 4 | -------------------------------------------------------------------------------- /symfony/vonage-notifier/5.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " texter_transports:", 8 | "content": " vonage: '%env(VONAGE_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "VONAGE_DSN=vonage://KEY:SECRET@default?from=FROM" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/3.3/config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | web_profiler: 2 | toolbar: true 3 | intercept_redirects: false 4 | 5 | framework: 6 | profiler: { only_exceptions: false } 7 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/3.3/config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | web_profiler: 2 | toolbar: false 3 | intercept_redirects: false 4 | 5 | framework: 6 | profiler: { collect: false } 7 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/3.3/config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | web_profiler_wdt: 2 | resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml' 3 | prefix: /_wdt 4 | 5 | web_profiler_profiler: 6 | resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml' 7 | prefix: /_profiler 8 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": ["dev", "test"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/5.3/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | web_profiler: 3 | toolbar: true 4 | intercept_redirects: false 5 | 6 | framework: 7 | profiler: { only_exceptions: false } 8 | 9 | when@test: 10 | web_profiler: 11 | toolbar: false 12 | intercept_redirects: false 13 | 14 | framework: 15 | profiler: { collect: false } 16 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/5.3/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | web_profiler_wdt: 3 | resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml' 4 | prefix: /_wdt 5 | 6 | web_profiler_profiler: 7 | resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml' 8 | prefix: /_profiler 9 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/5.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": ["dev", "test"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<5.3" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/6.1/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | web_profiler: 3 | toolbar: true 4 | 5 | framework: 6 | profiler: 7 | collect_serializer_data: true 8 | 9 | when@test: 10 | framework: 11 | profiler: { collect: false } 12 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/6.1/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | web_profiler_wdt: 3 | resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml' 4 | prefix: /_wdt 5 | 6 | web_profiler_profiler: 7 | resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml' 8 | prefix: /_profiler 9 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/6.1/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": ["dev", "test"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<6.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/7.3/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | web_profiler: 3 | toolbar: true 4 | 5 | framework: 6 | profiler: 7 | collect_serializer_data: true 8 | 9 | when@test: 10 | framework: 11 | profiler: { collect: false } 12 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/7.3/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- 1 | when@dev: 2 | web_profiler_wdt: 3 | resource: '@WebProfilerBundle/Resources/config/routing/wdt.php' 4 | prefix: /_wdt 5 | 6 | web_profiler_profiler: 7 | resource: '@WebProfilerBundle/Resources/config/routing/profiler.php' 8 | prefix: /_profiler 9 | -------------------------------------------------------------------------------- /symfony/web-profiler-bundle/7.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": ["dev", "test"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<6.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /symfony/web-server-bundle/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfony\\Bundle\\WebServerBundle\\WebServerBundle": ["dev"] 4 | }, 5 | "gitignore": [ 6 | "/.web-server-pid" 7 | ], 8 | "aliases": ["web-server", "server"] 9 | } 10 | -------------------------------------------------------------------------------- /symfony/webapp-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["webapp"], 3 | "copy-from-recipe": { 4 | "config/": "%CONFIG_DIR%/" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /symfony/webhook/6.3/config/routes/webhook.yaml: -------------------------------------------------------------------------------- 1 | webhook: 2 | resource: '@FrameworkBundle/Resources/config/routing/webhook.xml' 3 | prefix: /webhook 4 | -------------------------------------------------------------------------------- /symfony/webhook/6.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/webhook/7.3/config/routes/webhook.yaml: -------------------------------------------------------------------------------- 1 | webhook: 2 | resource: '@FrameworkBundle/Resources/config/routing/webhook.php' 3 | prefix: /webhook 4 | -------------------------------------------------------------------------------- /symfony/webhook/7.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.0/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * We recommend including the built version of this JavaScript file 5 | * (and its CSS file) in your base layout (base.html.twig). 6 | */ 7 | 8 | // any CSS you import will output into a single css file (app.css in this case) 9 | import './styles/app.css'; 10 | 11 | // start the Stimulus application 12 | import './bootstrap'; 13 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.0/assets/controllers.json: -------------------------------------------------------------------------------- 1 | { 2 | "controllers": [], 3 | "entrypoints": [] 4 | } 5 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.0/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.0/config/packages/assets.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | assets: 3 | json_manifest_path: '%kernel.project_dir%/public/build/manifest.json' 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.0/config/packages/prod/webpack_encore.yaml: -------------------------------------------------------------------------------- 1 | #webpack_encore: 2 | # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) 3 | # Available in version 1.2 4 | #cache: true 5 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.10/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * We recommend including the built version of this JavaScript file 5 | * (and its CSS file) in your base layout (base.html.twig). 6 | */ 7 | 8 | // any CSS you import will output into a single css file (app.css in this case) 9 | import './styles/app.css'; 10 | 11 | // start the Stimulus application 12 | import './bootstrap'; 13 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.10/assets/controllers.json: -------------------------------------------------------------------------------- 1 | { 2 | "controllers": [], 3 | "entrypoints": [] 4 | } 5 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.10/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.10/post-install.txt: -------------------------------------------------------------------------------- 1 | * Install Yarn and run yarn install 2 | 3 | * Start the development server: yarn encore dev-server 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.6/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * We recommend including the built version of this JavaScript file 5 | * (and its CSS file) in your base layout (base.html.twig). 6 | */ 7 | 8 | // any CSS you import will output into a single css file (app.css in this case) 9 | import './styles/app.css'; 10 | 11 | // start the Stimulus application 12 | import './bootstrap'; 13 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.6/assets/controllers.json: -------------------------------------------------------------------------------- 1 | { 2 | "controllers": [], 3 | "entrypoints": [] 4 | } 5 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.6/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.6/config/packages/assets.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | assets: 3 | json_manifest_path: '%kernel.project_dir%/public/build/manifest.json' 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.6/config/packages/prod/webpack_encore.yaml: -------------------------------------------------------------------------------- 1 | #webpack_encore: 2 | # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) 3 | # Available in version 1.2 4 | #cache: true 5 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.6/config/packages/test/webpack_encore.yaml: -------------------------------------------------------------------------------- 1 | #webpack_encore: 2 | # strict_mode: false 3 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.9/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * We recommend including the built version of this JavaScript file 5 | * (and its CSS file) in your base layout (base.html.twig). 6 | */ 7 | 8 | // any CSS you import will output into a single css file (app.css in this case) 9 | import './styles/app.css'; 10 | 11 | // start the Stimulus application 12 | import './bootstrap'; 13 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.9/assets/controllers.json: -------------------------------------------------------------------------------- 1 | { 2 | "controllers": [], 3 | "entrypoints": [] 4 | } 5 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.9/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/1.9/post-install.txt: -------------------------------------------------------------------------------- 1 | * Install Yarn and run yarn install 2 | 3 | * Uncomment the Twig helpers in templates/base.html.twig (they may be already) 4 | 5 | * Start the development server: yarn encore dev-server 6 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/2.0/assets/app.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Welcome to your app's main JavaScript file! 3 | * 4 | * We recommend including the built version of this JavaScript file 5 | * (and its CSS file) in your base layout (base.html.twig). 6 | */ 7 | 8 | // any CSS you import will output into a single css file (app.css in this case) 9 | import './styles/app.css'; 10 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/2.0/assets/styles/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /symfony/webpack-encore-bundle/2.0/post-install.txt: -------------------------------------------------------------------------------- 1 | * Install NPM and run npm install 2 | 3 | * Compile your assets for development: npm run dev 4 | 5 | * Compile your assets for development and watch for any modifications: npm run watch 6 | 7 | * Or start the development server: npm run dev-server 8 | 9 | * Compile your assets for production: npm run build 10 | -------------------------------------------------------------------------------- /symfony/workflow/3.3/config/packages/workflow.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | workflows: null 3 | -------------------------------------------------------------------------------- /symfony/workflow/3.3/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /symfony/yunpian-notifier/5.4/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " texter_transports:", 8 | "content": " yunpian: '%env(YUNPIAN_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "YUNPIAN_DSN=yunpian://APIKEY@default" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/zendesk-notifier/6.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " chatter_transports:", 8 | "content": " zendesk: '%env(ZENDESK_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "ZENDESK_DSN=zendesk://EMAIL:TOKEN@SUBDOMAIN" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfony/zulip-notifier/5.2/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "add-lines": [ 3 | { 4 | "file": "config/packages/notifier.yaml", 5 | "position": "after_target", 6 | "warn_if_missing": true, 7 | "target": " chatter_transports:", 8 | "content": " zulip: '%env(ZULIP_DSN)%'" 9 | } 10 | ], 11 | "env": { 12 | "#1": "ZULIP_DSN=zulip://EMAIL:TOKEN@HOST?channel=CHANNEL" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /symfonycasts/reset-password-bundle/1.0/config/packages/reset_password.yaml: -------------------------------------------------------------------------------- 1 | symfonycasts_reset_password: 2 | # Replace symfonycasts.reset_password.fake_request_repository with the full 3 | # namespace of the password reset request repository after it has been created. 4 | # i.e. App\Repository\ResetPasswordRequestRepository 5 | request_password_repository: symfonycasts.reset_password.fake_request_repository 6 | -------------------------------------------------------------------------------- /symfonycasts/reset-password-bundle/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "SymfonyCasts\\Bundle\\ResetPassword\\SymfonyCastsResetPasswordBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /symfonycasts/tailwind-bundle/0.8/config/packages/symfonycasts_tailwind.yaml: -------------------------------------------------------------------------------- 1 | symfonycasts_tailwind: 2 | # Specify the EXACT version of Tailwind CSS you want to use 3 | binary_version: 'v3.4.17' 4 | 5 | # Alternatively, you can specify the path to the binary that you manage yourself 6 | #binary: 'node_modules/.bin/tailwindcss' 7 | -------------------------------------------------------------------------------- /symfonycasts/tailwind-bundle/0.8/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Symfonycasts\\TailwindBundle\\SymfonycastsTailwindBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["tailwind", "tailwindcss"] 9 | } 10 | -------------------------------------------------------------------------------- /symfonycorp/platformsh-pack/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["platformsh"] 3 | } 4 | -------------------------------------------------------------------------------- /theofidry/alice-data-fixtures/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Fidry\\AliceDataFixtures\\Bridge\\Symfony\\FidryAliceDataFixturesBundle": ["dev", "test"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /twig/cssinliner-extension/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Twig\\CssInliner\\Bundle\\TwigCssInlinerBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /twig/extensions/1.0/config/packages/twig_extensions.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | public: false 4 | autowire: true 5 | autoconfigure: true 6 | 7 | # Uncomment any lines below to activate that Twig extension 8 | #Twig\Extensions\ArrayExtension: null 9 | #Twig\Extensions\DateExtension: null 10 | #Twig\Extensions\IntlExtension: null 11 | #Twig\Extensions\TextExtension: null 12 | -------------------------------------------------------------------------------- /twig/extensions/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "aliases": ["twig-extensions", "twig-ext", "twig-exts"] 6 | } 7 | -------------------------------------------------------------------------------- /twig/inky-extension/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Twig\\Inky\\Bundle\\TwigInkyBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /twig/markdown-extension/1.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Twig\\Markdown\\Bundle\\TwigMarkdownBundle": ["all"] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /willdurand/js-translation-bundle/2.0/config/routes/js_translation.yaml: -------------------------------------------------------------------------------- 1 | bazinga_js_translation: 2 | resource: "@BazingaJsTranslationBundle/Resources/config/routing/routing.yml" 3 | -------------------------------------------------------------------------------- /willdurand/js-translation-bundle/2.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundles": { 3 | "Bazinga\\Bundle\\JsTranslationBundle\\BazingaJsTranslationBundle": ["all"] 4 | }, 5 | "copy-from-recipe": { 6 | "config/": "%CONFIG_DIR%/" 7 | }, 8 | "aliases": ["js-translation", "js-translator"] 9 | } 10 | -------------------------------------------------------------------------------- /zenstruck/browser/1.9/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliases": ["browser"], 3 | "add-lines": [ 4 | { 5 | "file": "phpunit.xml.dist", 6 | "content": " ", 7 | "position": "after_target", 8 | "target": "", 9 | "warn_if_missing": true 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /zenstruck/browser/1.9/post-install.txt: -------------------------------------------------------------------------------- 1 | * You're ready to use zenstruck/browser: 2 | 1. Add the HasBrowser trait to "kernel" test cases 3 | 2. Start using $this->browser()->... in your tests 4 | 5 | * Read the documentation at https://github.com/zenstruck/browser#zenstruckbrowser 6 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.10/config/packages/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- 1 | when@dev: &dev 2 | # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration 3 | zenstruck_foundry: 4 | # Whether to auto-refresh proxies by default (https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#auto-refresh) 5 | auto_refresh_proxies: true 6 | 7 | when@test: *dev 8 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.10/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "bundles": { 6 | "Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<5.3" 10 | }, 11 | "aliases": ["foundry"] 12 | } 13 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.10/post-install.txt: -------------------------------------------------------------------------------- 1 | * You're ready to use zenstruck/foundry. Create your first factory with 2 | bin/console make:factory. 3 | 4 | * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html 5 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.9/config/packages/dev/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- 1 | # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration 2 | zenstruck_foundry: 3 | # Whether to auto-refresh proxies by default (https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#auto-refresh) 4 | auto_refresh_proxies: true 5 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.9/config/packages/test/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- 1 | # Unless you want different configuration for test/dev environments, 2 | # add configuration to config/packages/dev/zenstruck_foundry.yml 3 | # and this will be synced to your test environment. 4 | imports: 5 | - { resource: ../dev/zenstruck_foundry.yaml } 6 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.9/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "bundles": { 6 | "Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /zenstruck/foundry/1.9/post-install.txt: -------------------------------------------------------------------------------- 1 | * You're ready to use zenstruck/foundry. Create your first factory with 2 | bin/console make:factory. 3 | 4 | * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html 5 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.0/config/packages/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- 1 | when@dev: &dev 2 | # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration 3 | zenstruck_foundry: 4 | 5 | when@test: *dev 6 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.0/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "bundles": { 6 | "Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] 7 | }, 8 | "conflict": { 9 | "symfony/framework-bundle": "<5.3" 10 | }, 11 | "aliases": ["foundry"] 12 | } 13 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.0/post-install.txt: -------------------------------------------------------------------------------- 1 | * You're ready to use zenstruck/foundry. Create your first factory with 2 | bin/console make:factory. 3 | 4 | * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html 5 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.5/config/packages/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- 1 | when@dev: &dev 2 | # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration 3 | zenstruck_foundry: 4 | persistence: 5 | # Flush only once per call of `PersistentObjectFactory::create()` 6 | flush_once: true 7 | 8 | when@test: *dev 9 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.5/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/" 4 | }, 5 | "bundles": { 6 | "Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] 7 | }, 8 | "conflict": { 9 | "doctrine/persistence": "<2.0", 10 | "symfony/framework-bundle": "<6.4" 11 | }, 12 | "aliases": ["foundry"] 13 | } 14 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.5/post-install.txt: -------------------------------------------------------------------------------- 1 | * You're ready to use zenstruck/foundry. Create your first factory with 2 | bin/console make:factory. 3 | 4 | * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html 5 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.6/config/packages/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- 1 | when@dev: &dev 2 | # See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration 3 | zenstruck_foundry: 4 | persistence: 5 | # Flush only once per call of `PersistentObjectFactory::create()` 6 | flush_once: true 7 | 8 | when@test: *dev 9 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.6/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy-from-recipe": { 3 | "config/": "%CONFIG_DIR%/", 4 | "src/": "%SRC_DIR%/" 5 | }, 6 | "bundles": { 7 | "Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] 8 | }, 9 | "conflict": { 10 | "doctrine/persistence": "<2.0", 11 | "symfony/framework-bundle": "<6.4" 12 | }, 13 | "aliases": ["foundry"] 14 | } 15 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.6/post-install.txt: -------------------------------------------------------------------------------- 1 | * You're ready to use zenstruck/foundry. Create your first factory with 2 | bin/console make:factory. 3 | 4 | * Read the documentation at https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html 5 | -------------------------------------------------------------------------------- /zenstruck/foundry/2.6/src/Story/AppStory.php: -------------------------------------------------------------------------------- 1 | test environment with test:// 3 | 2. Use the InteractsWithMessenger trait in your "kernel" tests 4 | 5 | * Read the documentation at https://github.com/zenstruck/messenger-test#zenstruckmessenger-test 6 | --------------------------------------------------------------------------------