-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.08 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
{
"name": "h4kuna/data-type",
"type": "library",
"description": "Basic data type, int, float, string, set, gps",
"homepage": "https://github.com/h4kuna/data-type",
"license": "MIT",
"authors": [
{
"name": "Milan Matějček",
"email": "milan.matejcek@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"h4kuna/memoize": "^0.1.5",
"nette/utils": "^3.0.1 || ^4.0"
},
"autoload": {
"psr-4": {
"h4kuna\\DataType\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"h4kuna\\DataType\\Tests\\": "tests/src"
}
},
"require-dev": {
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-strict-rules": "^1.4",
"tracy/tracy": "^2.9"
},
"config": {
"sort-packages": true
},
"scripts": {
"stan": "vendor/bin/phpstan analyse",
"tests": "vendor/bin/tester --colors 1 -s -C tests/src",
"coverage": "vendor/bin/tester --coverage coverage.html --coverage-src src/ --colors 1 -s -C tests/src"
}
}