-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (74 loc) · 2.41 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
{
"name": "eappointment/zmsapi",
"description": "This application offers a REST-like interface for ZMS functions and database access.",
"license": "EUPL-1.2",
"authors": [
{
"name": "Mathias Fischer",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "path",
"url": "../*",
"options": {
"symlink": true
}
}
],
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"aronduby/dump": "*",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "*",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^9.5.4",
"helmich/phpunit-psr7-assert": "^4.3.0"
},
"require": {
"eappointment/mellon": "@dev",
"eappointment/zmsslim": "@dev",
"eappointment/zmsclient": "@dev",
"eappointment/zmsdldb": "@dev",
"eappointment/zmsdb": "@dev",
"eappointment/zmsentities": "@dev",
"monolog/monolog": "1.*",
"ulrichsg/getopt-php": "^2.3",
"league/climate": "^3.2"
},
"scripts": {
"clean": "rm -f public/doc/assets/*.* && rm -f public/_test/assets/*.*",
"command": "bin/configure",
"prepare-dirs": "mkdir -p public/_test/assets && mkdir -p public/doc/assets",
"wget-files": [
"wget https://eappointment.gitlab.io/zmsapi/doc/assets/redoc.min.js -O public/doc/assets/redoc.min.js",
"wget https://eappointment.gitlab.io/zmsapi/_test/assets/swagger-ui-bundle.js -O public/_test/assets/swagger-ui-bundle.js",
"wget https://eappointment.gitlab.io/zmsapi/_test/assets/swagger-ui.css -O public/_test/assets/swagger-ui.css",
"wget https://eappointment.gitlab.io/zmsapi/_test/assets/swagger-ui-standalone-preset.js -O public/_test/assets/swagger-ui-standalone-preset.js",
"sha256sum --status -c checksums.txt"
],
"post-install-cmd": [
"@prepare-dirs",
"@wget-files"
],
"post-update-cmd": [
"@prepare-dirs",
"@wget-files"
]
},
"bin": [],
"autoload": {
"psr-4": {
"BO\\Zmsapi\\": "src/Zmsapi/",
"BO\\Zmsapi\\Tests\\": "tests/Zmsapi/"
}
}
}