forked from mindscreen/yarnlock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.19 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
{
"name": "mindscreen/yarnlock",
"description": "A package for parsing and interpreting yarn.lock files",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matthias Klatte",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.2"
},
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.2",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Mindscreen\\YarnLock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mindscreen\\YarnLock\\Tests\\": "tests/src/"
}
},
"scripts": {
"lint": [
"@lint:composer-validate",
"@lint:phpcs"
],
"lint:composer-validate": "\"${COMPOSER_BINARY}\" validate",
"lint:phpcs": "phpcs",
"test": [
"mkdir -p '.cache' 'reports/human' 'reports/machine'",
"@test:phpunit"
],
"test:phpunit": "phpunit"
}
}