-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.33 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.33 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
42
43
44
45
46
47
48
{
"name": "pagarme/ecommerce-module-core",
"description": "Core component for Pagar.me e-commerce platform modules.",
"license": "MIT",
"version": "2.9.0",
"authors": [
{
"name":"Open Source Team"
}
],
"type": "library",
"require": {
"php": ">=7.1",
"monolog/monolog": "*",
"apimatic/unirest-php": "^2.0.0",
"apimatic/jsonmapper": "^1.3.1",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "1.2.4",
"nesbot/carbon": "1.39.0",
"ext-pdo": "*",
"phpunit/phpunit": "^5 | ^6 | ^7 | ^8 | ^9"
},
"autoload": {
"psr-4": {
"Pagarme\\Core\\": "src",
"Pagarme\\Core\\Test\\": "tests",
"Pagarme\\Core\\Test\\Mock\\": "tests\\mock",
"PagarmeCoreApiLib\\": "lib\\src"
}
},
"scripts": {
"post-install-cmd": [
"cp 'hooks/pre-commit' '.git/hooks/pre-commit'"
],
"post-update-cmd": [
"cp 'hooks/pre-commit' '.git/hooks/pre-commit'"
],
"tests": "vendor/bin/phpunit --colors=always",
"tests-coverage": "vendor/bin/phpunit --colors=always --coverage-html ./tests/report"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}