forked from symfony/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a new recipe for EasyAdmin 2.x
- Loading branch information
1 parent
641e2b2
commit 1b645c1
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
easycorp/easyadmin-bundle/2.0/config/packages/easy_admin.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#easy_admin: | ||
# entities: | ||
# # List the entity class name you want to manage | ||
# - App\Entity\Product | ||
# - App\Entity\Category | ||
# - App\Entity\User |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
easy_admin_bundle: | ||
resource: '@EasyAdminBundle/Controller/EasyAdminController.php' | ||
prefix: /admin | ||
type: annotation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"bundles": { | ||
"EasyCorp\\Bundle\\EasyAdminBundle\\EasyAdminBundle": ["all"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"aliases": ["admin-gen", "admin-generator", "admin"] | ||
} |