-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
38 lines (37 loc) · 878 Bytes
/
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
{
"name": "noisywinds/laravel-smartmd",
"description": "a laravel markdown editor",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "noisywinds",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"laravel/framework": "~5.4",
"intervention/image": "^2.4",
"phpunit/phpunit": "^7.4"
},
"require-dev": {
"laravel/laravel": "~5.4",
"intervention/image": "^2.4"
},
"autoload": {
"psr-4": {
"NoisyWinds\\Smartmd\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"NoisyWinds\\Smartmd\\SmartmdServiceProvider"
],
"aliases": {
"Smartmd": "NoisyWinds\\Smartmd\\Facades\\Smartmd"
}
}
}
}