-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.27 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.27 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": "lrackwitz/para",
"description": "A command-line tool for parallel execution of shell commands in multiple directories.",
"license": "GPL-3.0-or-later",
"require": {
"composer/installers": "^1.2",
"oomphinc/composer-installers-extender": "^1.1",
"symfony/console": ">=2.9 ^3.4",
"symfony/process": ">=2.9 ^3.4",
"symfony/monolog-bundle": ">=2.9 ^3.0",
"symfony/yaml": ">=2.9 ^3.4",
"monolog/monolog": "^1.22",
"symfony/finder": "^4.0",
"composer/composer": "^1.6",
"guzzlehttp/guzzle": "^6.3",
"symfony/serializer": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"mikey179/vfsStream": "^1.6",
"php-mock/php-mock-prophecy": "^0.0.2"
},
"authors": [
{
"name": "Lars Rosenberg",
"email": "larsrosenberg88@gmail.com"
}
],
"autoload": {
"psr-4": {
"Para\\": "src/",
"Para\\Tests\\": "tests/"
}
},
"bin": [
"bin/para"
],
"extra": {
"installer-types": [
"para-plugin"
],
"installer-paths": {
"src/Plugin/{$name}": [
"type:para-plugin"
]
}
}
}