-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
71 lines (69 loc) · 1.73 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
{
"name": "macfja/phar-builder",
"license": "MIT",
"require": {
"php": "~7.1",
"symfony/console": "^4.1",
"nicmart/string-template": "^0.1.1",
"league/event": "^2.1",
"webignition/readable-duration": "^2.0",
"gugglegum/memory-size": "^1.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"MacFJA\\PharBuilder\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"MacFJA\\PharBuilder\\UnitTest\\": "tests/Unit/",
"MacFJA\\PharBuilder\\CodeSniffer\\Sniffs\\": "tests/phpcs/Sniffs/"
}
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.4",
"infection/infection": "^0.10.5",
"gstarczyk/mimic": "1.2.1",
"edgedesign/phpqa": "^1.19",
"jakub-onderka/php-parallel-lint": "^1.0",
"macfja/mimic-patches": "1.0.0",
"squizlabs/php_codesniffer": "^3.4.0",
"vimeo/psalm": "^3.2",
"phpstan/phpstan": "^0.11.5",
"sensiolabs/security-checker": "^5.0"
},
"bin": ["bin/phar-builder.php"],
"repositories": [
{
"type": "package",
"package": {
"type": "metapackage",
"name": "macfja/mimic-patches",
"version": "1.0.0",
"require": {
"netresearch/composer-patches-plugin": "~1.0"
},
"extra": {
"patches": {
"gstarczyk/mimic": {
"1.2.1": [
{
"title": "gstarczyk/mimic: Add call to original constructor",
"url": "./patches/gstarczyk/mimic/constructor.patch"
}
]
}
}
}
}
}
],
"extra": {
"phar-builder": {
"compression": "gzip",
"included": ["resources", "LICENSE.md", "README.md"]
}
}
}