-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
79 lines (79 loc) · 2.2 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
70
71
72
73
74
75
76
77
78
79
{
"name": "daun/statamic-placeholders",
"description": "Generate low-quality image placeholders for lazyloading Statamic assets",
"license": "MIT",
"type": "statamic-addon",
"keywords": [
"statamic",
"image",
"placeholder",
"lqip",
"blurhash",
"thumbhash",
"lazyloading"
],
"authors": [
{
"name": "Philipp Daun",
"email": "post@philippdaun.net",
"homepage": "https://philippdaun.net"
}
],
"support": {
"email": "post@philippdaun.net"
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.8",
"intervention/image": "^2.7",
"kornrunner/blurhash": "^1.2",
"laravel/framework": "^9.21 || ^10.0 || ^11.0",
"srwiez/thumbhash": "^1.2",
"statamic/cms": "^4.0 || ^5.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.14",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.21",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.3",
"spatie/pest-plugin-snapshots": "^2.1"
},
"autoload": {
"psr-4": {
"Daun\\StatamicPlaceholders\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Daun\\StatamicPlaceholders\\ServiceProvider"
]
},
"statamic": {
"description": "Generate low-quality image placeholders for lazyloading.",
"name": "Placeholder Images"
}
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse --memory-limit=2G",
"format": "./vendor/bin/pint",
"lint": "./vendor/bin/pint --test",
"test": "./vendor/bin/pest",
"test:ci": "./vendor/bin/pest --coverage-clover coverage.xml",
"test:coverage": "./vendor/bin/pest --coverage",
"test:update": "./vendor/bin/pest --update-snapshots"
}
}