-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.17 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.17 KB
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
{
"name": "wastukancana/nim",
"type": "library",
"description": "STT Wastukancana Student ID (NIM) Parser",
"version": "2.0.0",
"homepage": "https://github.com/sooluh/waska-nim",
"license": "MIT",
"authors": [
{
"name": "Abu Masyail",
"email": "suluhs@aol.com",
"homepage": "https://suluh.my.id",
"role": "Maintainer"
}
],
"support": {
"source": "http://github.com/sooluh/waska-nim",
"docs": "https://github.com/sooluh/waska-nim/blob/master/README.md",
"issues": "https://github.com/sooluh/waska-nim/issues"
},
"scripts": {
"psr2check": [
"@php vendor/bin/phpcs --standard=PSR2 --ignore=tests/*,vendor/* ."
],
"psr2autofix": [
"@php vendor/bin/phpcbf --standard=PSR2 --ignore=tests/*,vendor/* ."
],
"tests": [
"@php vendor/bin/phpunit --testdox tests",
"@php vendor/bin/phpunit --coverage-html reports"
]
},
"autoload": {
"psr-4": {
"Wastukancana\\": "src/"
}
},
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.6",
"mikey179/vfsstream": "^1.6"
}
}