-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 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
{
"name": "nexendrie/book-component",
"description": "Simple book component with list of chapters/pages and links to previous and next chapter/page",
"keywords": [
"simple", "book", "component", "nette"
],
"license": "BSD-3-Clause",
"homepage": "https://nexendrie.gitlab.io",
"authors": [
{
"name": "Jakub Konečný",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://gitlab.com/nexendrie/book-component/",
"issues": "https://gitlab.com/nexendrie/book-component/issues",
"docs": "https://nexendrie.gitlab.io/book-component"
},
"require": {
"php": ">=7.4.0",
"nette/application": "^3.1.2",
"nette/utils": "^3.2.2",
"latte/latte": "^2.5",
"nexendrie/utils": "^1.8",
"symfony/polyfill-php80": "^1.22.1"
},
"require-dev": {
"nexendrie/code-quality": "dev-master",
"nexendrie/site-generator": "^0.7",
"nexendrie/translation": "^2.3.1",
"nette/http": "3.1.2"
},
"autoload": {
"psr-4": {
"Nexendrie\\BookComponent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nexendrie\\BookComponent\\": "tests/Nexendrie/BookComponent/"
}
},
"suggest": {
"nette/security": "To use book page conditions related to user",
"nexendrie/translation": "Translator"
},
"config": {
"classmap-authoritative": true
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}