-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.46 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.46 KB
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
{
"name": "justbetter/statamic-structured-data",
"autoload": {
"psr-4": {
"Justbetter\\StatamicStructuredData\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Justbetter\\StatamicStructuredData\\Tests\\": "tests"
}
},
"require": {
"php": "^8.4|^8.5",
"laravel/framework": "^12.0",
"statamic/cms": "^6.0"
},
"require-dev": {
"larastan/larastan": "^3.4",
"laravel/pint": "^1.29",
"orchestra/testbench": "^10.3",
"pestphp/pest": "^3.7",
"phpstan/phpstan-mockery": "^2.0",
"phpunit/phpunit": "^11.5"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"statamic": {
"name": "Statamic Structured Data",
"description": "Statamic Structured Data addon"
},
"laravel": {
"providers": [
"Justbetter\\StatamicStructuredData\\ServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan",
"style": "pint --test",
"coverage": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage --min=100",
"quality": [
"@test",
"@analyse",
"@style"
],
"fix-style": "pint"
},
"minimum-stability": "dev",
"prefer-stable": true
}