-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (34 loc) · 1.06 KB
/
composer.json
File metadata and controls
39 lines (34 loc) · 1.06 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
{
"name": "badpixxel/dol-helper",
"description": "This library is a set of Simple & Usefull Helpers for Dolibarr Framework.",
"keywords": ["Dolibarr", "Library", "PHP", "Framework", "Tools"],
"type": "package",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "BadPixxel",
"email": "eshop.bpaquier@gmail.com",
"homepage": "http://www.badpixxel.com"
}
],
"autoload": {
"psr-4": { "BadPixxel\\Dolibarr\\": "src" }
},
"autoload-dev": {
"psr-4": { "BadPixxel\\Dolibarr\\Tests\\": "tests" }
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"badpixxel/php-sdk": "dev-main",
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}