-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.94 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.94 KB
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
{
"name": "nepada/bust-cache",
"type": "library",
"license": "BSD-3-Clause",
"description": "Cache busting Latte tag.",
"keywords": ["latte", "bust", "cache", "nette"],
"support": {
"email": "petr@pada.cz",
"issues": "https://github.com/nepada/bust-cache/issues"
},
"authors": [
{
"name": "Petr Morávek",
"email": "petr@pada.cz"
}
],
"require": {
"php": ">=8.1.0 <8.6",
"latte/latte": "^3.0.1@dev"
},
"require-dev": {
"nette/tester": "2.6.1",
"phpstan/phpstan": "2.2.6",
"phpstan/phpstan-strict-rules": "2.0.12",
"phpstan/phpstan-nette": "2.0.12",
"nepada/phpstan-nette-tester": "2.0.1",
"spaze/phpstan-disallowed-calls": "4.13.0",
"shipmonk/phpstan-rules": "4.4.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"nepada/coding-standard": "8.0.1",
"nette/di": "^3.0.6@dev",
"nette/schema": "^1.0.3@dev",
"nette/bootstrap": ">=3.1@dev",
"nette/caching": "^3.0.2@dev",
"nette/application": "^3.1.6@dev",
"nette/component-model": ">=3.1",
"nette/neon": ">=3.3.4"
},
"conflict": {
"nette/di": "<3.0.6",
"nette/caching": "<3.0.2",
"nette/component-model": "3.1.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"
}
}
}