forked from microformats/php-mf2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.24 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
{
"name": "mf2/mf2",
"type": "library",
"description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API",
"keywords": ["microformats", "microformats 2", "parser", "semantic", "html"],
"authors" : [
{
"name": "Barnaby Walters",
"homepage": "http://waterpigs.co.uk"
}
],
"bin": ["bin/fetch-mf2", "bin/parse-mf2"],
"require": {
"php": ">=5.6.0"
},
"config": {
"platform": {
}
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mf2/tests": "@dev",
"squizlabs/php_codesniffer": "^2.6 || ^3.1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6",
"phpcompatibility/php-compatibility": "^9.3"
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": "./vendor/bin/phpcs -p",
"phpunit": "./vendor/bin/phpunit"
},
"autoload": {
"files": ["Mf2/Parser.php"]
},
"license": "CC0-1.0",
"suggest": {
"barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you",
"masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support."
}
}