-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.47 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.47 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-content-usage",
"autoload": {
"psr-4": {
"JustBetter\\StatamicContentUsage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JustBetter\\StatamicContentUsage\\Tests\\": "tests"
}
},
"require": {
"statamic/cms": "^6.0",
"php": "^8.4|^8.5",
"league/csv": "^9.0"
},
"require-dev": {
"larastan/larastan": "^3.4",
"laravel/pint": "^1.22",
"orchestra/testbench": "^10.3",
"pestphp/pest": "^4",
"phpstan/phpstan-mockery": "^2.0",
"phpunit/phpunit": "^12",
"brianium/paratest": "^7.20"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"statamic": {
"name": "Statamic Content Usage",
"description": "Statamic Content Usage addon"
},
"laravel": {
"providers": [
"JustBetter\\StatamicContentUsage\\ServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan --memory-limit=1G",
"style": "pint --test",
"coverage": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage --min=100",
"quality": [
"@test",
"@analyse",
"@style"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}