-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (37 loc) · 886 Bytes
/
composer.json
File metadata and controls
42 lines (37 loc) · 886 Bytes
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
{
"name": "dreadnaut/phpstunts",
"description": "phpStunts is a set of tools to read and handle information related to Stunts/4D Sport Driving data files.",
"type": "library",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "dreadnaut",
"email": "dreadnaut@gmail.com"
}
],
"autoload": {
"psr-4": { "PhpStunts\\": [ "src/" ] }
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"pestphp/pest": "^3.8"
},
"scripts": {
"test": [
"phpcs",
"phpstan analyse",
"pest"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": false
}
}
}