forked from spatie/schema-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.6 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
{
"name": "spatie/schema-org",
"description": "A fluent builder Schema.org types and ld+json generator",
"license": "MIT",
"keywords": [
"spatie",
"schema-org"
],
"authors": [
{
"name": "Sebastian De Deyne",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
},
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://gummibeer.de",
"role": "Developer"
}
],
"homepage": "https://github.com/spatie/schema-org",
"require": {
"php": "^8.0",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6",
"graham-campbell/analyzer": "^3.0.5",
"illuminate/collections": "^8.62.0",
"league/flysystem": "^2.3.0 || ^3.0",
"pestphp/pest": "^1.21",
"symfony/console": "^5.3.7 || 6.0",
"twig/twig": "^3.3.3"
},
"autoload": {
"psr-4": {
"Spatie\\SchemaOrg\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\SchemaOrg\\Generator\\": "generator",
"Spatie\\SchemaOrg\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"fix": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes",
"generate": "@php ./generate.php",
"test": "@php vendor/bin/pest"
}
}