-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.09 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "switon/cli",
"description": "Command surface with discovery, option binding, help output, and shell completion for Switon Framework",
"type": "library",
"keywords": [
"switon",
"cli",
"console",
"commands"
],
"homepage": "https://github.com/switon-php/cli",
"license": "MIT",
"authors": [
{
"name": "switon",
"email": "admin@switon.dev"
}
],
"support": {
"source": "https://github.com/switon-php/cli",
"issues": "https://github.com/switon-php/cli/issues",
"docs": "https://docs.switon.dev/latest/cli"
},
"require": {
"php": ">=8.3",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"switon/binding": "^1.0",
"switon/command": "^1.0",
"switon/console": "^1.0",
"switon/core": "^1.0",
"switon/event": "^1.0",
"switon/invoker": "^1.0",
"switon/kernel": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"switon/testing": "^1.0",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"switon/composer-extra": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Switon\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Switon\\Cli\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse",
"test": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=all --display-deprecations --display-phpunit-notices"
},
"extra": {
"switon": {
"providers": [
"Switon\\Cli\\ServiceProvider"
],
"commands": [
"Switon\\Cli\\Command\\ListCommand",
"Switon\\Cli\\Command\\HelpCommand",
"Switon\\Cli\\Command\\CompletionCommand"
]
},
"branch-alias": {
"dev-dev": "1.0.x-dev"
}
}
}