-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 950 Bytes
/
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
{
"name": "quillstack/unit-tests",
"description": "A simple library for unit testing in PHP 8.",
"type": "library",
"license": "MIT",
"keywords": [
"quillstack",
"php",
"php8",
"unit",
"tests"
],
"homepage": "https://quillstack.org/unit-tests",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "radek@quillstack.org"
}
],
"bin": ["bin/unit-tests"],
"autoload": {
"psr-4": {
"Quillstack\\UnitTests\\": "src/",
"Quillstack\\UnitTests\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"quillstack/local-storage": "^1.0",
"quillstack/di": "^1.0",
"quillstack/test-coverage": "^1.0"
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}