-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.55 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
{
"name": "olliecodes/laravel-etched-blade",
"description": "A Laravel package that uses blade templates to parse and convert markdown to HTML",
"type": "library",
"require": {
"php": "^7.3|^8.0",
"illuminate/view": "^8.0",
"league/commonmark": "^1.6",
"webuni/front-matter": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.17",
"marcocesarato/php-conventional-changelog": "^1.10"
},
"license": "MIT",
"authors": [
{
"name": "Ollie Read",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"OllieCodes\\Etched\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OllieCodes\\Etched\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"phpunit": "phpunit --verbose --colors=always",
"phpunit-coverage": "XDEBUG_MODE=coverage phpunit --verbose --colors=always --coverage-html build/coverage",
"test": [
"@phpunit"
],
"changelog": "conventional-changelog --config=.changelog"
},
"version": "1.0.4",
"extra": {
"laravel": {
"providers": [
"OllieCodes\\Etched\\EtchedServiceProvider"
],
"aliases": {
"Etched": "OllieCodes\\Etched\\Facades\\Etched"
}
}
}
}