-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
61 lines (61 loc) · 1.35 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
58
59
60
61
{
"name": "johmanx10/transaction",
"description": "Handles operations with automatic rollback mechanisms.",
"keywords": [
"transaction",
"rollback",
"commit"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jan-Marten de Boer",
"email": "github@johmanx.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.2",
"ext-SPL": "^7.2"
},
"require-dev": {
"mediact/testing-suite": "@stable",
"psr/log": "^1.0"
},
"suggest": {
"psr/log": "To log operations."
},
"autoload": {
"psr-4": {
"Johmanx10\\Transaction\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Johmanx10\\Transaction\\Tests\\": "tests"
}
},
"extra": {
"grumphp": {
"config-default-path": "vendor/mediact/testing-suite/config/default/grumphp.yml"
}
},
"archive": {
"exclude": [
"/.gitignore",
"/phpunit.xml",
"/phpmd.xml",
"/phpstan.neon",
"/phpcs.xml",
"/examples",
"/tests",
"/.gitattributes",
"/grumphp.yml"
]
},
"config": {
"sort-packages": true
}
}