-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
46 lines (46 loc) · 1.18 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
{
"name": "dansmaculotte/monetico-php",
"description": "PHP SDK for Monetico Payment Service",
"version": "2.0.11",
"type": "library",
"license": "MIT",
"keywords": [
"monetico"
],
"homepage": "https://github.com/dansmaculotte/monetico-php",
"authors": [
{
"name": "Gaël Reyrol",
"email": "[email protected]"
},
{
"name": "Martin Potel",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DansMaCulotte\\Monetico\\": "src/"
}
},
"require": {
"php": "^7.2|^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nesbot/carbon": "^2.27",
"friendsofphp/php-cs-fixer": "^3.13"
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"test-coverage": "@php vendor/bin/phpunit --coverage-html coverage",
"format": "@php vendor/bin/php-cs-fixer fix --config .php_cs.php"
},
"extra": {
"hooks": {
"pre-commit": "composer format",
"pre-push": "composer format"
}
}
}