-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
63 lines (63 loc) · 1.44 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
{
"name": "kdyby/autowired",
"type": "library",
"description": "Syntax sugar for working with services in Nette Framework",
"keywords": ["nette", "di", "autowire", "kdyby"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/kdyby/autowired/issues"
},
"require": {
"php": ">=8.0 <8.5",
"nette/utils": "^3.2.5 || ^4.0",
"nette/di": "^3.0.10",
"nette/component-model": "^3.0.2",
"nette/application": "^3.1.4",
"nette/caching": "^3.1",
"tracy/tracy": "^2.8"
},
"require-dev": {
"nette/bootstrap": "^3.1",
"nette/robot-loader": "^3.2 || ^4.0@dev",
"nette/tester": "^2.5.1",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan-nette": "^1.3.8",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"squizlabs/php_codesniffer": "^3.10.3",
"slevomat/coding-standard": "^8.15.0",
"nette/neon": ">=3.3.4@dev",
"nette/http": "*@dev"
},
"autoload": {
"psr-0": {
"Kdyby\\Autowired": "src/"
},
"classmap": [
"src/Kdyby/Autowired/exceptions.php"
]
},
"autoload-dev": {
"psr-0": {
"KdybyTests": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}