This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.68 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
{
"name": "nepada/template-factory",
"type": "library",
"license": "BSD-3-Clause",
"description": "Latte powered template factory on steroids.",
"keywords": ["nette", "latte", "template"],
"support": {
"email": "[email protected]",
"issues": "https://github.com/nepada/template-factory/issues"
},
"authors": [
{
"name": "Petr Morávek",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0 <8.2",
"nette/utils": "^3.2@dev",
"latte/latte": "^2.7.1@dev",
"nette/application": "^3.1.4@dev"
},
"require-dev": {
"nette/tester": "2.4.2",
"mockery/mockery": "1.5.0",
"phpstan/phpstan": "1.6.3",
"phpstan/phpstan-strict-rules": "1.1.0",
"phpstan/phpstan-nette": "1.0.0",
"nepada/phpstan-nette-tester": "0.4.0",
"spaze/phpstan-disallowed-calls": "2.3.2",
"phpstan/phpstan-mockery": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"nepada/coding-standard": "7.4.2",
"nette/di": "^3.0.6@dev",
"nette/schema": "^1.0.3@dev",
"nette/bootstrap": ">=3.0@dev"
},
"suggest": {
"nette/di": "for integration with Nette DI container"
},
"autoload": {
"psr-4": {
"Nepada\\Bridges\\": "src/Bridges/",
"Nepada\\TemplateFactory\\": "src/TemplateFactory/"
}
},
"autoload-dev": {
"psr-4": {
"NepadaTests\\": "tests/"
}
},
"config": {
"platform-check": false
},
"extra": {
"branch-alias": {
"dev-master": "2.8-dev"
}
},
"abandoned": true
}