-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.44 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "sourceability/console-toolbar-bundle",
"type": "library",
"description": "This bundle enables displaying the web toolbar in the console/terminal.",
"homepage": "https://github.com/sourceability/console-toolbar-bundle",
"license": "MIT",
"authors": [
{
"name": "Adrien Brault",
"email": "adrien.brault@gmail.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/web-profiler-bundle": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"behat/behat": "^3.7",
"friends-of-behat/symfony-extension": "^2.0",
"phpstan/phpstan": "^0.12.85 || ^1.0",
"phpstan/phpstan-deprecation-rules": "^0.12.6 || ^1.0",
"phpstan/phpstan-strict-rules": "^0.12.9 || ^1.0",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"symplify/easy-coding-standard": "^10.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Sourceability\\ConsoleToolbarBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sourceability\\ConsoleToolbarBundle\\Test\\": "tests/"
}
},
"support": {
"issues": "https://github.com/sourceability/console-toolbar-bundle/issues",
"source": "https://github.com/sourceability/console-toolbar-bundle"
}
}