-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.92 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
{
"name": "jkphl/micrometa",
"description": "A meta parser for extracting micro information out of web documents, currently supporting Microformats 1+2, HTML Microdata, RDFa Lite 1.1 and JSON-LD",
"homepage": "https://jkphl.is/projects/micrometa/",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Joschi Kuphal",
"email": "joschi@tollwerk.de",
"homepage": "https://jkphl.is",
"role": "Developer"
}
],
"support": {
"email": "joschi@tollwerk.de",
"source": "https://github.com/jkphl/micrometa",
"issues": "https://github.com/jkphl/micrometa/issues"
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.1.3",
"ext-dom": "*",
"jkphl/dom-factory": "^1",
"jkphl/rdfa-lite-microdata": "^0.4.4",
"league/uri": "^5.0|^6.5",
"mf2/mf2": "^0.4",
"ml/json-ld": "^1.2",
"monolog/monolog": "^1.24 || ^2 || ^3",
"psr/cache": "^1.0|^2|^3",
"psr/log": "^1.1|^2|^3",
"symfony/cache": "^4.0|^5.0|^6.0"
},
"autoload": {
"psr-4": {
"Jkphl\\": "src/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml.dist",
"depgraph": "vendor/bin/graph-composer --no-dev export . doc/dependencies.svg",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"test": "@phpunit"
},
"require-dev": {
"clue/graph-composer": "^1.1",
"mf2/tests": "@dev",
"phpunit/phpunit": "^7.0 || ^8.5",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.3"
}
}