-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 1.84 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
62
63
64
65
66
67
68
69
{
"name": "crwlr/schema-org",
"description": "Extract schema.org structured data from HTML documents.",
"keywords": [
"crwlr",
"schema.org",
"schema",
"org",
"structured",
"data",
"json-ld"
],
"homepage": "https://www.crwlr.software/packages/schema-org",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crwlrsoft/schema-org/issues",
"source": "https://github.com/crwlrsoft/schema-org",
"docs": "https://www.crwlr.software/packages/schema-org"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/otsch"
}
],
"autoload": {
"psr-4": {
"Crwlr\\SchemaOrg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"spatie/schema-org": "~3.23.0",
"symfony/dom-crawler": "^6.0|^7.0",
"crwlr/utils": "^1.0",
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"pestphp/pest": "^1.22|^2.0|^3.0",
"phpstan/phpstan": "^1.8",
"friendsofphp/php-cs-fixer": "^3.57"
},
"scripts": {
"test": "@php vendor/bin/pest",
"cs": "@php vendor/bin/php-cs-fixer fix -v --dry-run",
"cs-fix": "@php vendor/bin/php-cs-fixer fix -v",
"stan": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"add-git-hooks": "@php bin/add-git-hooks",
"generate-type-list": "@php bin/generate-type-list"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}