-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
56 lines (56 loc) · 1.56 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
{
"name": "naugrim/opentrans",
"description": "A library to create openTRANS compatible XML documents.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Erik Anders",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"jms/serializer": "^3.30.0",
"naugrim/bmecat": "^5.0.2"
},
"autoload": {
"psr-4": {
"Naugrim\\OpenTrans\\Tests\\": "tests/",
"Naugrim\\OpenTrans\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"symplify/easy-coding-standard": "^12.0",
"rector/rector": "^1.1",
"phpstan/phpstan": "^1.11",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-webmozart-assert": "^1.2",
"tomasvotruba/type-coverage": "^0.3.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"post-autoload-dump": [
"git config gitflow.path.hooks .githooks && git config core.hooksPath .githooks"
]
},
"autoload-dev": {
"psr-4": {
"Utils\\Rector\\": [
"utils/rector/src",
"vendor/naugrim/bmecat/utils/rector/src"
],
"Utils\\Rector\\Tests\\": "utils/rector/tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}