-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 795 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 795 Bytes
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
{
"name": "pd/supervisor",
"description": "Supervisor configuration with console commands for nette applications",
"keywords": [
"supervisor",
"extension",
"console",
"command",
"nette"
],
"homepage": "https://github.com/peckadesign/Supervisor",
"license": [
"MIT"
],
"authors": [
{
"name": "PeckaDesign",
"homepage": "http://www.peckadesign.cz"
},
{
"name": "Vít Kutný",
"homepage": "https://github.com/vitkutny"
}
],
"require": {
"php": "^7.4 | ^8.0",
"nette/application": "^3.0.0",
"nette/di": "^3.0.0|^3.1.3",
"symfony/console": "^3.0|^4.0|^5.0|^6.0",
"supervisorphp/configuration": "^0.3"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"nette/tester": "^2.4"
},
"autoload": {
"psr-4": {
"Pd\\Supervisor\\": "src/"
}
}
}