-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
105 lines (93 loc) · 2.54 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name" : "fastybird/simple-auth",
"type" : "library",
"description" : "PSR-7 authentication & authorization utils",
"keywords" : [
"fastybird",
"fb",
"libs",
"authentication",
"authorization",
"library"
],
"homepage" : "https://www.fastybird.com",
"license" : "Apache-2.0",
"authors" : [
{
"name" : "FastyBird s.r.o.",
"email" : "[email protected]",
"homepage" : "https://www.fastybird.com"
},
{
"name" : "Adam Kadlec",
"email" : "[email protected]"
}
],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/FastyBird/simple-auth/issues",
"source" : "https://github.com/FastyBird/simple-auth"
},
"prefer-stable" : true,
"minimum-stability" : "stable",
"require" : {
"php" : ">=8.1.0",
"ext-openssl" : "*",
"cweagans/composer-patches" : "^1.7",
"fastybird/datetime-factory" : "^0.6",
"ipub/doctrine-consistence" : "^0.4",
"ipub/doctrine-crud" : "^3.0",
"ipub/doctrine-dynamic-discriminator-map" : "^1.4",
"ipub/doctrine-orm-query" : "^0.1",
"lcobucci/jwt" : "^4.1",
"nette/bootstrap" : "^3.1",
"nette/di" : "^3.0",
"nette/utils" : "^3.2",
"ramsey/uuid" : "^4.2",
"ramsey/uuid-doctrine" : "^1.8"
},
"require-dev" : {
"fastybird/web-server" : "^0.8",
"mockery/mockery" : "^1.4",
"nettrine/cache" : "^0.3",
"nettrine/orm" : "^0.8",
"ninjify/nunjuck" : "^0.3",
"orisai/coding-standard" : "^3.2",
"pds/skeleton" : "^1.0",
"php-parallel-lint/php-parallel-lint" : "^1.3",
"phpstan/extension-installer" : "^1.1",
"phpstan/phpstan" : "^1.8",
"phpstan/phpstan-deprecation-rules" : "^1.0",
"phpstan/phpstan-doctrine" : "^1.3",
"phpstan/phpstan-nette" : "^1.0",
"phpstan/phpstan-strict-rules" : "^1.1",
"symfony/console" : "^5.0|^6.0",
"tracy/tracy" : "^2.9"
},
"autoload" : {
"psr-4" : {
"FastyBird\\SimpleAuth\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Tests\\Cases\\" : "tests/cases",
"Tests\\Fixtures\\" : "tests/fixtures"
}
},
"config" : {
"sort-packages" : true,
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : true,
"cweagans/composer-patches" : true,
"phpstan/extension-installer" : true
}
},
"extra" : {
"patches" : {
"nette/utils" : {
"Bug: Offset check with null support" : "https://raw.githubusercontent.com/FastyBird/libraries-patches/master/nette.array.offsetCheck.diff"
}
}
}
}