-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1017 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1017 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
38
39
40
41
42
{
"name": "quillstack/storage-interface",
"description": "Common interface for Storage classes.",
"type": "library",
"license": "MIT",
"keywords": [
"interface",
"php8",
"storage",
"quillstack"
],
"homepage": "https://quillstack.org/packages/storage-interface",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "radek@quillstack.org"
}
],
"require": {
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Quillstack\\StorageInterface\\": "src/",
"Quillstack\\StorageInterface\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.6.x-dev"
}
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"quillstack/unit-tests": "^0.9"
},
"scripts": {
"test": "unit-tests",
"test:coverage": "phpdbg -qrr ./vendor/bin/unit-tests",
"stan": "phpstan analyse"
}
}