-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 1.98 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
{
"name": "nepada/bust-cache",
"type": "library",
"license": "BSD-3-Clause",
"description": "Cache busting Latte tag.",
"keywords": ["latte", "bust", "cache", "nette"],
"support": {
"email": "[email protected]",
"issues": "https://github.com/nepada/bust-cache/issues"
},
"authors": [
{
"name": "Petr Morávek",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0 <8.5",
"latte/latte": "^3.0.1@dev"
},
"require-dev": {
"nette/tester": "2.5.4",
"phpstan/phpstan": "1.12.7",
"phpstan/phpstan-strict-rules": "1.6.1",
"phpstan/phpstan-nette": "1.3.8",
"nepada/phpstan-nette-tester": "1.2.1",
"spaze/phpstan-disallowed-calls": "4.0.1",
"shipmonk/phpstan-rules": "3.2.1",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"nepada/coding-standard": "7.14.1",
"nette/di": "^3.0.6@dev",
"nette/caching": "^3.0.2@dev",
"nette/schema": "^1.0.3@dev",
"nette/application": "^3.1.6@dev",
"nette/bootstrap": ">=3.1@dev",
"nette/component-model": ">=3.0.2",
"nette/neon": ">=3.3.4@dev",
"nette/http": "*@dev",
"nette/robot-loader": "*@dev"
},
"conflict": {
"nette/di": "<3.0.6",
"nette/caching": "<3.0.2"
},
"suggest": {
"nette/di": "for integration with Nette DI container",
"nette/caching": "for caching support"
},
"autoload": {
"psr-4": {
"Nepada\\Bridges\\": "src/Bridges/",
"Nepada\\BustCache\\": "src/BustCache/"
}
},
"autoload-dev": {
"psr-4": {
"NepadaTests\\": "tests/"
}
},
"config": {
"platform-check": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}