-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.01 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "eappointment/mellon",
"description": "Validator for parameters and validation helper",
"license": "MIT",
"authors": [
{
"name": "Mathias Fischer",
"email": "mathias.fischer@berlinonline.de"
}
],
"require-dev": {
"phpmd/phpmd": "^2.8.0",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest"
},
"require": {
"php": ">=8.4",
"ext-json": ">=0",
"ext-pcre": ">=0",
"roave/security-advisories": "dev-latest"
},
"scripts": {
"test": "php -dzend_extension=xdebug.so vendor/bin/phpunit --coverage-html coverage/",
"command": "bin/configure"
},
"autoload": {
"psr-4": {
"BO\\Mellon\\": "src/Mellon/"
}
},
"repositories": [
{
"type": "path",
"url": "../*",
"options": {
"symlink": true
}
}
]
}