forked from box-project/box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 3.06 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "humbug/box",
"description": "Fast, zero config application bundler with PHARs.",
"license": "MIT",
"keywords": [
"phar"
],
"authors": [
{
"name": "Kevin Herrera",
"email": "[email protected]",
"homepage": "http://kevin.herrera.io"
},
{
"name": "Théo Fidry",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-phar": "*",
"ext-sodium": "*",
"composer-plugin-api": "^2.2",
"amphp/parallel": "^2",
"composer/semver": "^3.3.2",
"composer/xdebug-handler": "^3.0.3",
"fidry/console": "^0.5.3",
"humbug/php-scoper": "^0.18.3",
"justinrainbow/json-schema": "^5.2.12",
"laravel/serializable-closure": "^1.2.2",
"nikic/iter": "^2.2",
"nikic/php-parser": "^4.15.2",
"paragonie/constant_time_encoding": "^2.6",
"phpdocumentor/reflection-docblock": "^5.3",
"phpdocumentor/type-resolver": "^1.7",
"psr/log": "^3.0",
"seld/jsonlint": "^1.9",
"symfony/console": "^6.1.7",
"symfony/filesystem": "^6.1.5",
"symfony/finder": "^6.1.3",
"symfony/process": "^6.1.3",
"symfony/var-dumper": "^6.1.6",
"webmozart/assert": "^1.11"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"ergebnis/composer-normalize": "^2.29",
"fidry/makefile": "^0.2.1",
"mikey179/vfsstream": "^1.6.11",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.26",
"symfony/phpunit-bridge": "^6.1.6",
"symfony/yaml": "^6.2",
"webmozarts/strict-phpunit": "^7.6"
},
"replace": {
"paragonie/sodium_compat": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"suggest": {
"ext-openssl": "To accelerate private key generation."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"KevinGH\\Box\\": "src"
},
"files": [
"src/FileSystem/file_system.php",
"src/consts.php",
"src/functions.php"
],
"exclude-from-classmap": [
"/Test/",
"vendor/humbug/php-scoper/vendor-hotfix"
]
},
"autoload-dev": {
"psr-4": {
"KevinGH\\Box\\": [
"fixtures",
"tests"
]
}
},
"bin": [
"bin/box"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": false,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.1"
},
"platform-check": false,
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
},
"branch-alias": {
"dev-main": "4.x-dev"
}
}
}