-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
composer.json
112 lines (112 loc) · 3.05 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.2",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-phar": "*",
"composer-plugin-api": "^2.2",
"amphp/parallel": "^2.0",
"composer/semver": "^3.3.2",
"composer/xdebug-handler": "^3.0.3",
"fidry/console": "^0.6.0",
"fidry/filesystem": "^1.2.1",
"humbug/php-scoper": "^0.18.14",
"justinrainbow/json-schema": "^5.2.12",
"nikic/iter": "^2.2",
"phpdocumentor/reflection-docblock": "^5.4",
"phpdocumentor/type-resolver": "^1.7",
"psr/log": "^3.0",
"sebastian/diff": "^5.0",
"seld/jsonlint": "^1.10.2",
"seld/phar-utils": "^1.2",
"symfony/finder": "^6.4.0 || ^7.0.0",
"symfony/polyfill-iconv": "^1.28",
"symfony/polyfill-mbstring": "^1.28",
"symfony/process": "^6.4.0 || ^7.0.0",
"symfony/var-dumper": "^6.4.0 || ^7.0.0",
"thecodingmachine/safe": "^2.5",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ext-xml": "*",
"bamarni/composer-bin-plugin": "^1.8.2",
"ergebnis/composer-normalize": "^2.29",
"fidry/makefile": "^1.0.1",
"mikey179/vfsstream": "^1.6.11",
"phpspec/prophecy": "^1.18",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpunit/phpunit": "^10.5.2",
"symfony/yaml": "^6.4.0 || ^7.0.0"
},
"replace": {
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"suggest": {
"ext-openssl": "To accelerate private key generation."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"KevinGH\\Box\\": "src"
},
"files": [
"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.2"
},
"platform-check": false,
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
},
"branch-alias": {
"dev-main": "4.x-dev"
}
}
}