-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.15 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
48
{
"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": "[email protected]",
"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": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"tracy/tracy": "^2.9"
},
"config": {
"sort-packages": true
},
"scripts": {
"coverage": "vendor/bin/tester --coverage coverage.html --coverage-src src/ --colors 1 -s -C tests/src",
"qa": "composer stan && composer tests",
"stan": "vendor/bin/phpstan analyse",
"tests": "vendor/bin/tester --colors 1 -s -C tests/src"
}
}