-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.2 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": "biurad/php-starter",
"description": "A template repository for setting up a new PHP library package.",
"keywords": ["template", "templating", "biurad", "php"],
"homepage": "https://biurad.com",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "divineibok@gmail.com"
},
{
"name": "GitHub Contributors",
"homepage": "https://github.com/biurad/php-starter/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/poakium/starter"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.27"
},
"autoload": {
"psr-4": {
"Biurad\\Package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\Package\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs -q",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
]
}
}