-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
70 lines (70 loc) · 1.97 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
{
"name": "42coders/document-templates",
"description": "Document template management package.",
"version": "6.0.0",
"license": "MIT",
"require": {
"php" : "^8.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"twig/twig": "^2.7 || ^3.4",
"doctrine/dbal": "^3.0",
"barryvdh/laravel-dompdf": "^1.0 || ^2.0",
"spatie/browsershot": "^3.40.3 || ^4.0"
},
"repositories": [
{
"type": "github",
"url": "https://github.com/wdev-rs/rmt.git",
"reference": "master"
}
],
"require-dev": {
"liip/rmt": "dev-master",
"phpunit/phpunit": "^9.4 || ^10.0 || ^11.0",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"orchestra/testbench-browser-kit": "^7.0 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.0 || ^1.10",
"phpmd/phpmd": "^2.7",
"mockery/mockery": "^1.2"
},
"authors": [
{
"name": "Daniel Verner",
"email": "[email protected]"
},
{
"name": "Filip Vucinic",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BWF\\DocumentTemplates\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BWF\\DocumentTemplates\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html tests/coverage",
"build-docs": "/usr/local/bin/phpdox",
"inspect": [
"vendor/bin/phpcs",
"vendor/bin/phpstan analyze src"
],
"inspect-fix": "vendor/bin/phpcbf",
"insights" : "vendor/bin/phpmd src text phpmd.xml"
},
"extra": {
"laravel": {
"dont-discover": [],
"providers": [
"BWF\\DocumentTemplates\\DocumentTemplatesServiceProvider"
]
}
}
}