This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.54 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
{
"name": "arkecosystem/commonmark",
"description": "CommonMark for internal Laravel Projects. Powered by league/commonmark.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Brian Faust",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/unicorn-fail/configuration.git"
}
],
"require": {
"illuminate/support": "^8.28",
"graham-campbell/markdown": "^13.1",
"spatie/regex": "^2.0",
"league/commonmark": "^1.5",
"calebporzio/sushi": "^2.1",
"spatie/yaml-front-matter": "^2.0",
"unicorn-fail/emoji": "1.0.x-dev",
"arkecosystem/ui": "^5.0"
},
"require-dev": {
"arkecosystem/stan": "^3.3",
"guzzlehttp/guzzle": "^7.3"
},
"autoload": {
"psr-4": {
"ARKEcosystem\\CommonMark\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ARKEcosystem\\CommonMark\\CommonMarkServiceProvider"
]
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest --coverage --coverage-html=.coverage --coverage-clover=coverage.xml"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}