-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.21 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
51
52
53
54
{
"name": "projek-xyz/template",
"description": "Project Template",
"keywords": ["project", "template"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fery Wardiyanto",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/projek-xyz/php-lib-template"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feryardiant"
}
],
"scripts": {
"spec": "kahlan --config=tests/config.php",
"lint": "phpcs --standard=PSR12 -n -p src",
"test": [
"@lint",
"@spec"
]
},
"autoload": {
"psr-4": {
"Projek\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Stubs\\": "tests/stubs"
}
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"kahlan/kahlan": "^5.2",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}