-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.51 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.51 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
{
"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": "filip@prochazka.su"
}
],
"support": {
"email": "filip@prochazka.su",
"issues": "https://github.com/kdyby/autowired/issues"
},
"require": {
"php": ">=8.1 <8.6",
"nette/utils": "^4.0",
"nette/di": "^3.1",
"nette/component-model": "^3.1",
"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.7",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-nette": "^2.0.6",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"squizlabs/php_codesniffer": "^4.0.1",
"slevomat/coding-standard": "^8.25.0",
"nette/neon": ">=3.3.4",
"composer-runtime-api": "^2.0",
"composer/semver": "3.4.4"
},
"conflict": {
"nette/component-model": "3.1.2"
},
"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.2-dev"
}
}
}