-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.25 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"name": "xcore/inline-editing-nette",
"type": "library",
"description": "Content inline editable bundle for Nette.",
"keywords": [
"nette",
"xcore",
"inline"
],
"homepage": "https://appio.cz",
"license": "MIT",
"authors": [
{
"name": "Jakub Janata",
"email": "jakubjanata@gmail.com"
}
],
"require": {
"php": "^8.0",
"xcore/inline-editing": "^1.3.0",
"freezy-bee/nette-caching-psr6": "^2.0",
"freezy-bee/prepend-route": "~2.0.1",
"latte/latte": "^2.8",
"nette/application": "^3.0",
"nette/di": "^3.0"
},
"require-dev": {
"nette/security": "^3.0",
"tracy/tracy": "^2.4",
"symfony/property-access": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"nette/tester": "^2.1",
"phpstan/phpstan": "^1.0",
"doctrine/dbal": "^3.1"
},
"suggest": {
"kdyby/doctrine": "If you wanna use entity features",
"kdyby/validator": "If you wanna use entity features",
"symfony/property-access": "If you wanna use entity features"
},
"autoload": {
"psr-4": {
"XcoreCMS\\InlineEditingNette\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XcoreCMS\\InlineEditingNette\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}