-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.08 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "tito10047/progressive-image-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "High-performance progressive image loading bundle for Symfony with Blurhash placeholders, zero CLS, and smart responsive strategies.",
"minimum-stability": "stable",
"authors": [
{
"name": "Jozef Môstka",
"email": "jozef@mostka.sk",
"homepage": "https://vsetkosada.sk/en"
}
],
"keywords": [
"symfony",
"preference",
"batch",
"pagination",
"ui",
"symfony-ux"
],
"require": {
"php": ">=8.2",
"kornrunner/blurhash": "^1.2",
"symfony/asset": "^6.4|^7.4|^8.0",
"symfony/framework-bundle": "^6.4|^7.4|^6.4|^7.4|^8.0",
"symfony/stimulus-bundle": "^2.31",
"symfony/translation": "^6.4|^7.4|^8.0",
"symfony/twig-bundle": "^6.4|^7.4|^8.0",
"symfony/ux-twig-component": "^2.31",
"symfony/web-link": "^6.4|^7.4|^8.0"
},
"require-dev": {
"ext-imagick": "*",
"friendsofphp/php-cs-fixer": "^3.92",
"liip/imagine-bundle": "^2.16",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"symfony/asset-mapper": "^6.4|^7.4|^8.0",
"symfony/dotenv": "^6.4|^7.4|^8.0",
"symfony/test-pack": "^1.2",
"symfony/yaml": "^6.4|^7.4|^8.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
}
},
"extra": {
"symfony-web-dir": "./tests/App/AssetMapper/public",
"public-dir": "./tests/App/AssetMapper/public",
"symfony": {
"require": "6.4.*"
}
},
"scripts" : {
"test": [
"phpunit"
],
"fix-cs": "php-cs-fixer fix",
"check-cs": "php-cs-fixer fix --dry-run --diff"
},
"autoload": {
"psr-4": {
"Tito10047\\ProgressiveImageBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tito10047\\ProgressiveImageBundle\\Tests\\": "tests/"
}
}
}