-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.03 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
{
"name": "sonypradana/fake-nik",
"description": "fake nik with valid data",
"keywords": ["faker nik", "nomor ininduk kependudukan"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Faker\\": "src/"
},
"files": [
"src/helper.php"
]
},
"authors": [
{
"name": "Angger Pradana",
"email": "sonypradana@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.2",
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/phpstan": "^1.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi --memory-limit=-1 --debug",
"test:unit": "phpunit",
"test": [
"@test:lint",
"@test:unit",
"@test:types"
]
}
}