-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
34 lines (34 loc) · 875 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": "league/markua",
"type": "library",
"description": "Markdown parser for PHP based on the Markua spec",
"keywords": ["markdown","parser","markua"],
"homepage": "https://github.com/thephpleague/markua",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Davey Shafik",
"email": "[email protected]",
"homepage": "http://daveyshafik.com",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.3.3",
"league/commonmark": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"codeclimate/php-test-reporter": "~0.1"
},
"autoload": {
"psr-4": {
"League\\Markua\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\Markua\\Tests\\": "tests/"
}
}
}