-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "castor/uuid",
"description": "An RFC-4122 compliant Universally Unique Identifiers value object implementation",
"keywords": [
"castor",
"stdlib",
"php",
"php82",
"uuid",
"rfc4122"
],
"homepage": "https://castor-labs.github.io/php-lib-std/packages/uuid",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Matias Navarro Carter",
"email": "[email protected]",
"role": "Lead Maintainer"
}
],
"autoload": {
"psr-4": {
"Castor\\": "src"
},
"files": [
"include/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Castor\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://castor-labs.github.io/php-packages"
}
],
"require": {
"php": ">=8.3",
"ext-bcmath": "*",
"castor/functions": "^1.0",
"brick/date-time": "^0.7"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"friendsofphp/php-cs-fixer": "^3.68",
"vimeo/psalm": "^5.26",
"ergebnis/phpunit-slow-test-detector": "^2.10",
"ramsey/uuid": "^4.7",
"phpbench/phpbench": "^1.3"
},
"scripts": {
"pr": [
"@fmt",
"@psalm",
"@test"
],
"ci": [
"@fmt:check",
"@psalm:gh",
"@test"
],
"fmt": "php-cs-fixer fix --diff --ansi",
"fmt:check": "php-cs-fixer fix --dry-run --diff --show-progress=none --ansi",
"test": [
"phpunit --colors"
],
"test:unit": "phpunit --colors --exclude-group=integration --exclude-group=e2e",
"test:e2e": "phpunit --colors --group=e2e",
"test:integration": "phpunit --colors --group=integration",
"bench": "phpbench run --report=default --output=html tests/Benchmark",
"profile": "phpbench xdebug:profile tests/Benchmark --progress=none",
"psalm": "psalm --no-cache --threads=5",
"psalm:gh": "psalm --no-cache --threads=5 --long-progress --output-format=github",
"psalm:fix": "psalm --update-baseline",
"psalm:allow": "psalm --set-baseline=psalm-baseline.xml"
}
}