mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-22 18:27:31 +00:00
Add support for adding values to php.ini
For example, to set the `memory_limit` value: ```yaml php: ini: memory_limit: 256M ```
This commit is contained in:
parent
85d0c6cb06
commit
30304ec7a8
|
@ -194,6 +194,13 @@ final class ConfigDto
|
||||||
new Assert\Type('string'),
|
new Assert\Type('string'),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
|
'ini' => new Assert\Optional([
|
||||||
|
new Assert\Type('array'),
|
||||||
|
new Assert\All([
|
||||||
|
new Assert\Type('string'),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
|
||||||
'phpcs' => new Assert\Optional([
|
'phpcs' => new Assert\Optional([
|
||||||
new Assert\AtLeastOneOf(
|
new Assert\AtLeastOneOf(
|
||||||
constraints: [
|
constraints: [
|
||||||
|
|
Loading…
Reference in a new issue