-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.27 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "karmabunny/kb",
"description": "Common KB utilities",
"keywords": ["utilities", "karmabunny", "kb", "collections"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Karmabunny",
"email": "info@karmabunny.com.au"
}
],
"require": {
"symfony/polyfill-php73": "*",
"php": "^7.2|^8",
"symfony/polyfill-php81": "^1.26",
"karmabunny/interfaces": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^2.1",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"karmabunny\\kb\\": ["src/", "compat/"]
},
"files": [
"compat/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\": "test/Test"
}
},
"scripts": {
"tests": "phpunit --testdox --configuration phpunit.xml",
"publish": "bash scripts/publish.sh",
"docs": "bash scripts/docs.sh",
"zones": "@php scripts/zones.php",
"analyse": "phpstan analyse -c phpstan.neon",
"compat": "phpcs -p --standard=phpcs.xml --colors --extensions=php"
}
}