-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.21 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 2.21 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
68
69
70
71
{
"name": "nyoncode/laravel-knowledge-base",
"description": "A knowledge base for Laravel — Diátaxis-shaped articles, search-first navigation, internal and public visibility, revisions and reader feedback. Ships Livewire 3/4 components and publishable Blade views.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"knowledge-base",
"documentation",
"help-center",
"livewire",
"nyoncode"
],
"authors": [
{
"name": "NyonCode",
"email": "info@nyoncode.com"
}
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"league/commonmark": "^2.4",
"nyoncode/laravel-package-toolkit": "^2.0",
"symfony/html-sanitizer": "^7.0|^8.0"
},
"require-dev": {
"larastan/larastan": "^2.9|^3.0",
"laravel/pint": "^1.13",
"livewire/livewire": "^3.0|^4.0",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"pestphp/pest": "^2.0|^3.0|^4.0",
"phpstan/phpstan": "^1.12|^2.1"
},
"autoload": {
"psr-4": {
"NyonCode\\KnowledgeBase\\": "src/",
"NyonCode\\KnowledgeBase\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"NyonCode\\KnowledgeBase\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon.dist --memory-limit=1G",
"test": "vendor/bin/pest",
"format": "vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"NyonCode\\KnowledgeBase\\Providers\\KnowledgeBaseServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"suggest": {
"livewire/livewire": "Renders the shipped knowledge base UI as reactive Livewire components (3.x or 4.x).",
"laravel/scout": "Swap the default database search for Scout by binding the ArticleSearch contract."
}
}