-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.27 KB
/
composer.json
File metadata and controls
59 lines (59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "maplephp/unitary",
"type": "library",
"description": "PHP Unitary is a user-friendly and robust unit testing library designed to make writing and running tests for your PHP code easy.",
"keywords": [
"php",
"cli",
"command line",
"test",
"testing"
],
"homepage": "https://wazabii.se",
"license": "Apache-2.0",
"authors": [
{
"name": "Daniel Ronkainen",
"email": "daniel.ronkainen@wazabii.se"
},
{
"name": "Unitary",
"homepage": "https://maplephp.github.io/Unitary/"
}
],
"scripts": {
"test": "php bin/unitary"
},
"require": {
"php": ">=8.0",
"composer/semver": "^3.4",
"maplephp/blunder": "^1.3",
"maplephp/dto": "^3.1",
"maplephp/emitron": "^1.0",
"maplephp/http": "^2.0",
"maplephp/validate": "^2.0",
"maplephp/prompts": "^1.2",
"maplephp/container": "^2.0",
"maplephp/cache": "^2.0"
},
"autoload": {
"files": [
"src/Setup/assert-polyfill.php",
"src/Support/functions.php"
],
"psr-4": {
"MaplePHP\\Unitary\\": "src"
}
},
"bin": [
"bin/unitary"
],
"extra": {
"branch-alias": {
"dev-main": "2.x-dev",
"dev-develop": "2.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}