Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f1c1e37

Browse filesBrowse files
committed
Merge branch '3.1'
* 3.1: format json fixtures cleanup apply rtrim
2 parents e9e29fa + d12c100 commit f1c1e37
Copy full SHA for f1c1e37
Expand file treeCollapse file tree

26 files changed

+686
-161
lines changed
+154-1Lines changed: 154 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,154 @@
1-
{"commands":[{"name":"help","usage":["help [--format FORMAT] [--raw] [--] [<command_name>]"],"description":"Displays help for a command","help":"The <info>help<\/info> command displays help for a given command:\n\n <info>php app\/console help list<\/info>\n\nYou can also output the help in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console help --format=xml list<\/info>\n\nTo display the list of available commands, please use the <info>list<\/info> command.","definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}}},{"name":"list","usage":["list [--raw] [--format FORMAT] [--] [<namespace>]"],"description":"Lists commands","help":"The <info>list<\/info> command lists all commands:\n\n <info>php app\/console list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n <info>php app\/console list test<\/info>\n\nYou can also output the information in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n <info>php app\/console list --raw<\/info>","definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"The output format (txt, xml, json, or md)","default":"txt"}}}}],"namespaces":[{"id":"_global","commands":["help","list"]}]}
1+
{
2+
"commands": [
3+
{
4+
"name": "help",
5+
"usage": [
6+
"help [--format FORMAT] [--raw] [--] [<command_name>]"
7+
],
8+
"description": "Displays help for a command",
9+
"help": "The <info>help<\/info> command displays help for a given command:\n\n <info>php app\/console help list<\/info>\n\nYou can also output the help in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console help --format=xml list<\/info>\n\nTo display the list of available commands, please use the <info>list<\/info> command.",
10+
"definition": {
11+
"arguments": {
12+
"command_name": {
13+
"name": "command_name",
14+
"is_required": false,
15+
"is_array": false,
16+
"description": "The command name",
17+
"default": "help"
18+
}
19+
},
20+
"options": {
21+
"format": {
22+
"name": "--format",
23+
"shortcut": "",
24+
"accept_value": true,
25+
"is_value_required": true,
26+
"is_multiple": false,
27+
"description": "The output format (txt, xml, json, or md)",
28+
"default": "txt"
29+
},
30+
"raw": {
31+
"name": "--raw",
32+
"shortcut": "",
33+
"accept_value": false,
34+
"is_value_required": false,
35+
"is_multiple": false,
36+
"description": "To output raw command help",
37+
"default": false
38+
},
39+
"help": {
40+
"name": "--help",
41+
"shortcut": "-h",
42+
"accept_value": false,
43+
"is_value_required": false,
44+
"is_multiple": false,
45+
"description": "Display this help message",
46+
"default": false
47+
},
48+
"quiet": {
49+
"name": "--quiet",
50+
"shortcut": "-q",
51+
"accept_value": false,
52+
"is_value_required": false,
53+
"is_multiple": false,
54+
"description": "Do not output any message",
55+
"default": false
56+
},
57+
"verbose": {
58+
"name": "--verbose",
59+
"shortcut": "-v|-vv|-vvv",
60+
"accept_value": false,
61+
"is_value_required": false,
62+
"is_multiple": false,
63+
"description": "Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug",
64+
"default": false
65+
},
66+
"version": {
67+
"name": "--version",
68+
"shortcut": "-V",
69+
"accept_value": false,
70+
"is_value_required": false,
71+
"is_multiple": false,
72+
"description": "Display this application version",
73+
"default": false
74+
},
75+
"ansi": {
76+
"name": "--ansi",
77+
"shortcut": "",
78+
"accept_value": false,
79+
"is_value_required": false,
80+
"is_multiple": false,
81+
"description": "Force ANSI output",
82+
"default": false
83+
},
84+
"no-ansi": {
85+
"name": "--no-ansi",
86+
"shortcut": "",
87+
"accept_value": false,
88+
"is_value_required": false,
89+
"is_multiple": false,
90+
"description": "Disable ANSI output",
91+
"default": false
92+
},
93+
"no-interaction": {
94+
"name": "--no-interaction",
95+
"shortcut": "-n",
96+
"accept_value": false,
97+
"is_value_required": false,
98+
"is_multiple": false,
99+
"description": "Do not ask any interactive question",
100+
"default": false
101+
}
102+
}
103+
}
104+
},
105+
{
106+
"name": "list",
107+
"usage": [
108+
"list [--raw] [--format FORMAT] [--] [<namespace>]"
109+
],
110+
"description": "Lists commands",
111+
"help": "The <info>list<\/info> command lists all commands:\n\n <info>php app\/console list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n <info>php app\/console list test<\/info>\n\nYou can also output the information in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n <info>php app\/console list --raw<\/info>",
112+
"definition": {
113+
"arguments": {
114+
"namespace": {
115+
"name": "namespace",
116+
"is_required": false,
117+
"is_array": false,
118+
"description": "The namespace name",
119+
"default": null
120+
}
121+
},
122+
"options": {
123+
"raw": {
124+
"name": "--raw",
125+
"shortcut": "",
126+
"accept_value": false,
127+
"is_value_required": false,
128+
"is_multiple": false,
129+
"description": "To output raw command list",
130+
"default": false
131+
},
132+
"format": {
133+
"name": "--format",
134+
"shortcut": "",
135+
"accept_value": true,
136+
"is_value_required": true,
137+
"is_multiple": false,
138+
"description": "The output format (txt, xml, json, or md)",
139+
"default": "txt"
140+
}
141+
}
142+
}
143+
}
144+
],
145+
"namespaces": [
146+
{
147+
"id": "_global",
148+
"commands": [
149+
"help",
150+
"list"
151+
]
152+
}
153+
]
154+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.