-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.1 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
82
83
84
85
{
"name": "vairogs/functions",
"description": "⛨ Vairogs ⛨: Functions",
"type": "library",
"keywords": [
"functions",
"php",
"symfony",
"vairogs"
],
"license": "MIT",
"authors": [
{
"name": "Dāvis Zālītis (k0d3r1s)",
"email": "[email protected]",
"homepage": "https://me.k0d3r1s.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/vairogs/vairogs/issues",
"wiki": "https://github.com/vairogs/vairogs/wiki"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/k0d3r1s"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/k0d3r1s"
},
{
"type": "issuehunt",
"url": "https://issuehunt.io/r/vairogs/vairogs"
}
],
"require": {
"php": ">=8.2.0",
"ext-curl": "*",
"composer-runtime-api": ">=2.0.0",
"symfony/http-foundation": ">=6.1",
"symfony/intl": ">=6.1",
"symfony/property-info": ">=6.1",
"symfony/routing": ">=6.1"
},
"require-dev": {
"ext-random": "*",
"ext-gmp": "*",
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": ">=10.0",
"roave/security-advisories": "dev-latest",
"symfony/framework-bundle": "*",
"vairogs/core": "dev-master"
},
"suggest": {
"ext-random": "*",
"ext-gmp": "*"
},
"autoload": {
"psr-4": {
"Vairogs\\Functions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vairogs\\Functions\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
},
"thanks": {
"name": "vairogs/vairogs",
"url": "https://github.com/vairogs/vairogs"
}
}
}