-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
61 lines (61 loc) · 1.51 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
56
57
58
59
60
61
{
"name": "yusufkandemir/microdata-parser",
"type": "library",
"description": "Parse microdata from HTML documents with ease. PHP Implementation of W3C Microdata to JSON Specification.",
"keywords": [
"microdata",
"parser",
"json",
"w3c",
"whatwg"
],
"homepage": "https://github.com/yusufkandemir/microdata-parser",
"license": "MIT",
"authors": [
{
"name": "Yusuf Kandemir",
"email": "[email protected]",
"homepage": "https://github.com/yusufkandemir"
}
],
"scripts": {
"analyze": "phpstan",
"test": "pest",
"lint": "php-cs-fixer fix --dry-run --verbose",
"lint:fix": "php-cs-fixer fix"
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-libxml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.54",
"pestphp/pest": "^1.23.1",
"phpstan/phpstan": "^1.10.67"
},
"suggest": {
"ext-json": "Needed to convert results to JSON"
},
"autoload": {
"psr-4": {
"YusufKandemir\\MicrodataParser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"YusufKandemir\\MicrodataParser\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}