forked from box-project/box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (92 loc) · 2.5 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
91
92
93
94
95
{
"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"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3 || ^8.0",
"ext-phar": "*",
"composer-plugin-api": "^1.0 || ^2.0",
"amphp/parallel-functions": "^1.0",
"composer/package-versions-deprecated": "^1.8",
"composer/semver": "^3.2",
"composer/xdebug-handler": "^2.0",
"humbug/php-scoper": "^0.13.10 || ^0.14",
"justinrainbow/json-schema": "^5.2.9",
"nikic/iter": "^2.0",
"nikic/php-parser": "^4.2",
"opis/closure": "^3.2",
"paragonie/pharaoh": "^0.6",
"phpdocumentor/reflection-docblock": "^5.2",
"psr/log": "^1.0",
"seld/jsonlint": "^1.7",
"symfony/console": "^4.3.5 || ^5.2",
"symfony/filesystem": "^4.4 || ^5.2",
"symfony/finder": "^4.4 || ^5.2",
"symfony/process": "^4.4 || ^5.2",
"symfony/var-dumper": "^4.4 || ^5.2",
"webmozart/assert": "^1.9",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3",
"mikey179/vfsstream": "^1.6",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.0",
"symfony/phpunit-bridge": "^4.2 || ^5.0"
},
"suggest": {
"ext-openssl": "To accelerate private key generation."
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.3"
},
"platform-check": false,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"bamarni-bin": {
"bin-links": false
}
}
}