-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.1 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
41
42
43
44
45
46
47
48
{
"name": "totten/pogo",
"description": "Run PHP scripts with inline dependencies",
"license": "MIT",
"authors": [
{
"name": "Tim Otten",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.8",
"lesser-evil/shell-verbosity-is-evil": "~1.0",
"symfony/console": "~4.0",
"symfony/yaml": "~4.0",
"civicrm/composer-downloads-plugin": "~3.0",
"symfony/filesystem": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"Pogo\\": "src/"
}
},
"bin": [
"bin/pogo.php"
],
"config": {
"platform": {
"php": "7.1.8"
},
"bin-dir": "bin",
"allow-plugins": {
"civicrm/composer-downloads-plugin": true
}
},
"extra": {
"downloads": {
"box": {
"url": "https://github.com/humbug/box/releases/download/3.16.0/box.phar",
"path": "bin/box",
"type": "phar"
}
}
}
}