-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
73 lines (73 loc) · 2.19 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
64
65
66
67
68
69
70
71
72
73
{
"name": "reliqarts/laravel-docweaver",
"description": "An easy-to-use product documentation package for Laravel.",
"keywords": [
"doc",
"package",
"generation",
"documentation",
"laravel",
"content"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "reliq",
"email": "reliq@reliqarts.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/support": "9 - 10",
"league/commonmark": "^2.2",
"monolog/monolog": "1.24 - 3",
"nesbot/carbon": "^2.0",
"reliqarts/laravel-common": "5.0 - 6",
"symfony/browser-kit": ">=4.3",
"symfony/process": ">=4.0",
"symfony/yaml": ">=4.3"
},
"require-dev": {
"orchestra/testbench-browser-kit": "4 - 8",
"phpunit/phpunit": "^9.3",
"phpro/grumphp": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"symplify/easy-coding-standard": ">=10.2"
},
"autoload": {
"psr-4": {
"ReliqArts\\Docweaver\\": "src/",
"ReliqArts\\Docweaver\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ReliqArts\\Docweaver\\ServiceProvider"
],
"aliases": {
"DocweaverDocumentation": "ReliqArts\\Docweaver\\Models\\Documentation",
"DocweaverMarkdown": "ReliqArts\\Docweaver\\Helpers\\Markdown",
"DocweaverProduct": "ReliqArts\\Docweaver\\Models\\Product",
"DocweaverPublisher": "ReliqArts\\Docweaver\\Services\\Publisher"
}
}
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --verbose --colors=auto --coverage-clover=coverage.xml",
"test:unit": "phpunit --testsuite=Unit --verbose --coverage-clover=coverage.xml",
"test:integration": "phpunit --testsuite=Integration --verbose"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"phpro/grumphp": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}