-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.02 KB
/
composer.json
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
{
"name": "yokai/safe-command-bundle",
"description": "Prevent from running dangerous commands, or unwanted environment, based on configuration.",
"keywords": ["command","configuration"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yann Eugoné",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/yaml": "^6.4|^7.0",
"symplify/easy-coding-standard": "^12.0",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Yokai\\SafeCommandBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yokai\\SafeCommandBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}