-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.09 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name" : "dgfip-si1/process-helper",
"description" : "symfony process wrapper - Execute many processes, manage logs - interplates on command strings",
"type" : "library",
"license" : "GPL-3.0-or-later",
"authors": [
{
"name" : "Jean-Marie Gervais",
"email" : "jm.gervais@gmail.com"
}
],
"keywords" : [
"process"
],
"require" : {
"php" : ">=7.3",
"composer/composer" : "~2.1",
"symfony/process": "^6",
"symfony/filesystem": "^6",
"vlucas/phpdotenv": "^5",
"mefworks/string-interpolation": "^1.0",
"dgfip-si1/php-config-tree": "dev-main",
"jmg/test-logger": "dev-main"
},
"require-dev": {
"phpstan/phpstan": "^1",
"squizlabs/php_codesniffer": "^3.6",
"escapestudios/symfony2-coding-standard": "3.x-dev",
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4",
"mikey179/vfsstream": "^1.6"
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"autoload": {
"psr-4": {
"DgfipSI1\\ProcessHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DgfipSI1\\processHelperTests\\": "tests/phpunit/src"
}
}
}