-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.79 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hosmelq/laravel-imgproxy",
"description": "Build imgproxy URLs in Laravel with optional encryption and signing.",
"license": "MIT",
"keywords": [
"encryption",
"image-processing",
"image-transforms",
"imgproxy",
"imgproxy-php",
"laravel",
"laravel-imgproxy",
"php",
"signed-urls",
"url-builder"
],
"authors": [
{
"name": "Hosmel Quintana",
"email": "hosmelq@gmail.com"
}
],
"require": {
"php": "^8.3",
"hosmelq/imgproxy": "^1.0",
"illuminate/filesystem": "^11.0 || ^12.0",
"illuminate/support": "^11.0 || ^12.0",
"spatie/laravel-package-tools": "^1.92",
"thecodingmachine/safe": "^3.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"larastan/larastan": "^3.8",
"laravel/pint": "^1.26",
"orchestra/testbench": "^9.9 || ^10.0",
"pestphp/pest": "^4.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"rector/rector": "^2.2",
"rector/type-perfect": "^2.1",
"shipmonk/composer-dependency-analyser": "^1.8",
"spaze/phpstan-disallowed-calls": "^4.7",
"thecodingmachine/phpstan-safe-rule": "^1.4",
"ticketswap/phpstan-error-formatter": "^1.2",
"tomasvotruba/type-coverage": "^2.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"HosmelQ\\Imgproxy\\Laravel\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"HosmelQ\\Imgproxy\\Laravel\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"HosmelQ\\Imgproxy\\Laravel\\ImgproxyServiceProvider"
]
}
},
"scripts": {
"phpstan": "phpstan analyse --configuration=phpstan.neon.dist --memory-limit=4G",
"pint": "pint",
"rector": "rector",
"test": "pest",
"test-coverage": "pest --coverage"
},
"scripts-descriptions": {
"phpstan": "Run PHPStan static analysis.",
"pint": "Format code using Laravel Pint.",
"rector": "Run Rector automated refactoring.",
"test": "Run the test suite using Pest.",
"test-coverage": "Run the test suite with code coverage using Pest."
},
"$schema": "https://getcomposer.org/schema.json"
}