-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "alexz707/invoiceninja-module",
"description": "Laminas module that provides InvoiceNinja api functionality",
"type": "library",
"license": "MIT",
"keywords": [
"InvoiceNinja",
"module",
"laminas",
"rest"
],
"homepage": "https://github.com/alexz707/InvoiceNinjaModule",
"authors": [
{
"name": "Al3x Zamponi",
"email": "[email protected]",
"homepage": "https://github.com/alexz707/"
}
],
"require": {
"php": "^8.1",
"laminas/laminas-hydrator": "^4.3",
"laminas/laminas-mvc": "^3.3",
"laminas/laminas-filter": "^2.13",
"laminas/laminas-servicemanager": "^3.10",
"laminas/laminas-modulemanager": "^2.11"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.4",
"scrutinizer/ocular": "dev-master"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"InvoiceNinjaModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InvoiceNinjaModuleTest\\": "tests/"
}
}
}