forked from box-project/box
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
90 lines (87 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "humbug/box",
"description": "Fast, zero config application bundler with PHARs.",
"keywords": ["phar"],
"license": "MIT",
"authors": [
{
"name": "Kevin Herrera",
"email": "[email protected]",
"homepage": "http://kevin.herrera.io"
},
{
"name": "Théo Fidry",
"email": "[email protected]"
}
],
"bin": [
"bin/box"
],
"autoload": {
"psr-4": {
"KevinGH\\Box\\": "src"
},
"files": [
"src/FileSystem/file_system.php",
"src/consts.php",
"src/functions.php"
],
"exclude-from-classmap": [
"/Test/"
]
},
"autoload-dev": {
"psr-4": {
"KevinGH\\Box\\": [
"fixtures",
"tests"
]
}
},
"require": {
"php": "^7.1",
"ext-phar": "*",
"amphp/parallel-functions": "^0.1.2",
"beberlei/assert": "^3.0",
"composer/composer": "^1.6",
"composer/xdebug-handler": "^1.1.0",
"herrera-io/annotations": "~1.0",
"humbug/php-scoper": "^0.10",
"justinrainbow/json-schema": "^5.2",
"nikic/iter": "^1.6",
"ocramius/package-versions": "^1.3",
"paragonie/pharaoh": "dev-master#45f139d",
"phpseclib/phpseclib": "~2.0",
"seld/jsonlint": "^1.6",
"symfony/console": "^3.4 || ^4.0",
"symfony/filesystem": "^3.4 || ^4.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/var-dumper": "^3.4 || ^4.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.2",
"infection/infection": "^0.10",
"mikey179/vfsStream": "^1.1",
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^4.1"
},
"suggest": {
"ext-openssl": "To accelerate private key generation."
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.1.10"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"bamarni-bin": {
"bin-links": false
}
}
}