generated from surplex/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
101 lines (101 loc) · 2.63 KB
/
composer.json
File metadata and controls
101 lines (101 loc) · 2.63 KB
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
{
"name": "surplex/api-mock",
"description": "A mock for automated testing. To use the mock, send a request to the mock with sample data and get returned when you \nrequest an external service, when you configured your settings appropriately.",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Surplex GmbH - Team Unity"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"ext-pdo": "*",
"ext-zip": "*",
"ext-memcached": "*",
"ext-soap": "*",
"yiisoft/yii2": "~2.0.16",
"ext-dom": "*",
"ext-simplexml": "*",
"samdark/yii2-psr-log-target": "^1.1",
"monolog/monolog": "^2.0"
},
"provide": {
"bower-asset/jquery": "*",
"bower-asset/jquery.inputmask": "*",
"bower-asset/punycode": "*",
"bower-asset/yii2-pjax": "*",
"bower-asset/bootstrap": "*",
"bower-asset/inputmask": "*"
},
"require-dev": {
"codeception/codeception": "^4",
"codeception/c3": "2.*",
"codeception/module-asserts": "*",
"codeception/module-phpbrowser": "*",
"codeception/module-rest": "*"
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"yiisoft/yii2-composer": true,
"codeception/c3": true
}
},
"autoload": {
"psr-4": {
"Srplx\\Tests\\": "tests/",
"SrplxBoiler\\Common\\": "src/Common",
"Srplx\\Mock\\": "src/Mock",
"Srplx\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postCreateProject",
"SrplxBoiler\\Common\\Component\\Composer\\ParametersComposer::action",
"composer dump-autoload"
],
"post-update-cmd": [
"yii\\composer\\Installer::postCreateProject",
"SrplxBoiler\\Common\\Component\\Composer\\ParametersComposer::action",
"composer dump-autoload"
]
},
"extra": {
"enable-patching": true,
"patches-file": "composer.patches.json",
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"var/cache": "0777",
"var/logs": "0777",
"bin/console": "0755"
}
]
},
"SrplxBoiler\\Common\\Component\\Composer\\ParametersComposer": {
"parameters": [
{
"dist-path": "config",
"target-path": "config",
"dist-file": "params.dist.php",
"target-file": "params.php"
},
{
"dist-path": "config",
"target-path": "config",
"dist-file": "params_console.dist.php",
"target-file": "params_console.php"
}
]
}
}
}