-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.19 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
{
"name": "ninjify/nunjuck",
"description": "Special tuned version of nette/tester for your PHP projects",
"keywords": [
"tester",
"php",
"nette"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/ninjify/nunjuck",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=7.2",
"nette/tester": "^2.4.3"
},
"require-dev": {
"ninjify/qa": "^0.12",
"mockery/mockery": "^1.2.2",
"janmarek/mockista": "^1.1.0",
"nette/di": "~3.0.0",
"nette/robot-loader": "~3.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-nette": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12"
},
"suggest": {
"mockery/mockery": "to use BaseMockeryTestCase",
"janmarek/mockista": "to use BaseMockistaTestCase",
"nette/di": "to use BaseContainerTestCase"
},
"bin": [
"bin/nunjuck",
"bin/nunjuck-setup"
],
"autoload": {
"psr-4": {
"Ninjify\\Nunjuck\\": "src"
},
"files": [
"src/functions.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
}
}
}