minor updates
This commit is contained in:
@@ -2,3 +2,23 @@
|
||||
|
||||
## How to Create a bundle
|
||||
|
||||
[Official Symfony Docs - Create a bundle](https://symfony.com/doc/current/bundles.html#creating-a-bundle)
|
||||
|
||||
mkdir -p lib/bundleName/src
|
||||
touch lib/bundleName/src/bundleName.php
|
||||
|
||||
You have to add the namespace\bundle name to config/bundles.php
|
||||
```vendorName\bundleName\bundleName::class => ['all' => true],```
|
||||
|
||||
And you have to auto load the class by adding the next line in composer.json:
|
||||
```
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"vendorName\\bundleName\\": "lib/bundleName/src/",
|
||||
"App\\": "src/"
|
||||
}
|
||||
},
|
||||
```
|
||||
(replace vendorName\bundleName and make sure the directory is correct)
|
||||
|
||||
run ```composer dump-autoload``` after updating the composer.json
|
||||
@@ -15,5 +15,8 @@ php bin/console security:hash-password
|
||||
# Composer Cheat Sheet
|
||||
|
||||
composer dump-autoload
|
||||
|
||||
To view the namespaces symfony creates for twig:
|
||||
php bin/console debug:twig
|
||||
## Installed Recipes
|
||||
Use ```composer recipes``` to see which bundles you have installed.
|
||||
|
||||
Reference in New Issue
Block a user