-
-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee79aec
commit fadeac1
Showing
14 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
hautelook/alice-bundle/2.2/config/packages/hautelook_alice.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,5 @@ | ||
when@dev: &dev | ||
hautelook_alice: | ||
fixtures_path: fixtures | ||
|
||
when@test: *dev |
Empty file.
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,13 @@ | ||
{ | ||
"aliases": ["alice"], | ||
"bundles": { | ||
"Hautelook\\AliceBundle\\HautelookAliceBundle": ["dev", "test"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/", | ||
"fixtures/": "fixtures/" | ||
}, | ||
"conflict": { | ||
"symfony/framework-bundle": "<5.3" | ||
} | ||
} |
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,2 @@ | ||
* <fg=blue>Write</> fixtures files in the <comment>fixtures/</> folder | ||
* <fg=blue>Run</> <comment>php bin/console hautelook:fixtures:load</> |
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,12 @@ | ||
when@dev: &dev | ||
nelmio_alice: | ||
functions_blacklist: | ||
- 'current' | ||
- 'shuffle' | ||
- 'date' | ||
- 'time' | ||
- 'file' | ||
- 'md5' | ||
- 'sha1' | ||
|
||
when@test: *dev |
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,11 @@ | ||
{ | ||
"bundles": { | ||
"Nelmio\\Alice\\Bridge\\Symfony\\NelmioAliceBundle": ["dev", "test"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"conflict": { | ||
"symfony/framework-bundle": "<5.3" | ||
} | ||
} |
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,13 @@ | ||
framework: | ||
validation: | ||
email_validation_mode: html5 | ||
|
||
# Enables validator auto-mapping support. | ||
# For instance, basic validation constraints will be inferred from Doctrine's metadata. | ||
#auto_mapping: | ||
# App\Entity\: [] | ||
|
||
when@test: | ||
framework: | ||
validation: | ||
not_compromised_password: false |
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 @@ | ||
{ | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"aliases": ["validation"], | ||
"conflict": { | ||
"symfony/framework-bundle": "<5.3" | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
symfony/web-profiler-bundle/5.3/config/packages/web_profiler.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,15 @@ | ||
when@dev: | ||
web_profiler: | ||
toolbar: true | ||
intercept_redirects: false | ||
|
||
framework: | ||
profiler: { only_exceptions: false } | ||
|
||
when@test: | ||
web_profiler: | ||
toolbar: false | ||
intercept_redirects: false | ||
|
||
framework: | ||
profiler: { collect: false } |
8 changes: 8 additions & 0 deletions
8
symfony/web-profiler-bundle/5.3/config/routes/web_profiler.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,8 @@ | ||
when@dev: | ||
web_profiler_wdt: | ||
resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml' | ||
prefix: /_wdt | ||
|
||
web_profiler_profiler: | ||
resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml' | ||
prefix: /_profiler |
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,11 @@ | ||
{ | ||
"bundles": { | ||
"Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle": ["dev", "test"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"conflict": { | ||
"symfony/framework-bundle": "<5.3" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
zenstruck/foundry/1.10/config/packages/zenstruck_foundry.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,7 @@ | ||
when@dev: &dev | ||
# See full configuration: https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#full-default-bundle-configuration | ||
zenstruck_foundry: | ||
# Whether to auto-refresh proxies by default (https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#auto-refresh) | ||
auto_refresh_proxies: true | ||
|
||
when@test: *dev |
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,11 @@ | ||
{ | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"bundles": { | ||
"Zenstruck\\Foundry\\ZenstruckFoundryBundle": ["dev", "test"] | ||
}, | ||
"conflict": { | ||
"symfony/framework-bundle": "<5.3" | ||
} | ||
} |
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 @@ | ||
* You're ready to use zenstruck/foundry. Create your first factory with | ||
<info>bin/console make:factory</>. | ||
|
||
* <fg=blue>Read</> the documentation at <comment>https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html</> |