-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcomposer.json
57 lines (57 loc) · 1.52 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
{
"name": "omise/omise-php",
"description": "A PHP library designed specifically to connect with Omise API.",
"type": "library",
"version": "v2.18.0",
"keywords": [
"alipay payment",
"credit card payment",
"internet banking payment",
"konbini payment",
"omise",
"payment",
"payment processing"
],
"homepage": "https://www.omise.co",
"readme": "https://github.com/omise/omise-php/blob/master/README.md",
"license": "MIT",
"authors": [
{
"name": "Omise and contributors",
"homepage": "https://github.com/omise/omise-php/graphs/contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/omise/omise-php/issues"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^9.5",
"friendsofphp/php-cs-fixer": "^2.19.3 || ^3.9.5",
"phpstan/phpstan": "1.11.0",
"vlucas/phpdotenv": "5.5.0"
},
"autoload": {
"classmap": ["lib/omise/"]
},
"autoload-dev": {
"psr-4": {
"Omise\\": "tests/"
}
},
"scripts": {
"test:unit": "TEST_TYPE=unit ./vendor/bin/phpunit --testdox",
"test:coverage": "XDEBUG_MODE=coverage TEST_TYPE=unit ./vendor/bin/phpunit --coverage-clover=coverage.xml",
"fix": "vendor/bin/php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --using-cache=no",
"analyse": "vendor/bin/phpstan analyse lib tests",
"phpstan": "vendor/bin/phpstan analyse lib tests"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}