-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "abouvier/clrmamepro-parser",
"description": "Parser for ClrMamePro DAT files",
"keywords": [
"clrmamepro",
"dat",
"emulation",
"game",
"hash",
"lexer",
"mame",
"parle",
"parser",
"rom"
],
"homepage": "https://github.com/abouvier/clrmamepro-parser",
"license": [
"Apache-2.0",
"CC0-1.0"
],
"authors": [
{
"name": "Alexandre Bouvier",
"email": "[email protected]",
"homepage": "https://github.com/abouvier"
}
],
"support": {
"issues": "https://github.com/abouvier/clrmamepro-parser/issues",
"source": "https://github.com/abouvier/clrmamepro-parser"
},
"require": {
"php": "^8.0",
"ext-parle": "*",
"ext-spl": "*"
},
"require-dev": {
"ext-xdebug": "*",
"escapestudios/symfony2-coding-standard": "@dev",
"friendsofphp/php-cs-fixer": "@stable",
"infection/infection": "@stable",
"jetbrains/phpstorm-stubs": "@dev",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "@stable",
"phpstan/phpstan-strict-rules": "@dev",
"phpunit/phpunit": "@stable",
"squizlabs/php_codesniffer": "@stable",
"vimeo/psalm": "@stable"
},
"autoload": {
"psr-4": {
"Abouvier\\Clrmamepro\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abouvier\\Clrmamepro\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
}
},
"scripts": {
"post-update-cmd": "phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard",
"lint": [
"phpcs",
"phpstan",
"psalm"
],
"reuse": "reuse lint",
"test": [
"phpunit tests",
"infection --show-mutations"
]
}
}