-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 903 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 903 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
{
"name": "ianriizky/coding-interview",
"description": "Kumpulan source code dari pertanyaan atau studi kasus yang sering muncul saat mengikuti proses coding interview",
"version": "1.4.1",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "ianriizky",
"email": "ian.rizkypratama@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.2",
"laravel/pint": "^1.5"
},
"autoload": {
"psr-4": {
"Ianriizky\\CodingInterview\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "pint --test",
"format": "pint"
}
}