-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
34 lines (34 loc) · 961 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
{
"name": "ns/simplemde-bundle",
"type": "symfony-bundle",
"description": "This bundle provides the simplemde markdown editor and forms to a symfony bundle",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Nathanael David Noblet",
"email": "[email protected]"
},
{
"name": "Mark Woynarski",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"symfony/framework-bundle": "^2.8|^3.0|^4.0",
"symfony/form": "^2.8|^3.0|^4.0",
"ext-json": "*"
},
"autoload": {
"psr-4": { "NS\\SimpleMDEBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "NS\\SimpleMDEBundle\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}