Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability to set non-string values with config command #8195

Closed
TravisCarden opened this issue Jun 18, 2019 · 2 comments
Closed

Add the ability to set non-string values with config command #8195

TravisCarden opened this issue Jun 18, 2019 · 2 comments
Labels
Milestone

Comments

@TravisCarden
Copy link
Contributor

It's currently impossible to use the config command to set non-string values. For example:

$ composer init -n
$ composer config extra.array '[]'
$ composer config extra.boolean false
$ composer config extra.null null
$ composer config extra.number 42
$ composer config extra.object '{}'
$ composer config extra.string 'Hello, world!'
$ cat composer.json
{
    "require": {},
    "extra": {
        "array": "[]",
        "boolean": "false",
        "null": "null",
        "number": "42",
        "object": "{}",
        "string": "Hello, world!"
    }
}

I would like the result to be this, of course:

{
    "require": {},
    "extra": {
        "array": [],
        "boolean": false,
        "null": null,
        "number": 42,
        "object": {},
        "string": "Hello, world!"
    }
}

It may be instructive to consider how Git approaches this problem:

$ git config -h
usage: git config [<options>]

...

Type
    -t, --type <>         value is given this type
    --bool                value is "true" or "false"
    --int                 value is decimal number
    --bool-or-int         value is --bool or --int
    --path                value is a path (file or directory name)
    --expiry-date         value is an expiry date

...

I would love to see something analogous in Composer.

@Seldaek
Copy link
Member

Seldaek commented Jul 29, 2019

I think detecting true/false/null/numbers magically should be easy enough and simpler than having to specify a type arg

@Seldaek
Copy link
Member

Seldaek commented Oct 26, 2020

@Seldaek Seldaek closed this as completed Oct 26, 2020
@Seldaek Seldaek modified the milestones: Nice To Have, 2.0 Oct 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants