-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.29 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.29 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
{
"name": "hosmelq/imgproxy",
"description": "Build imgproxy URLs in PHP with optional encryption and signing.",
"license": "MIT",
"keywords": [
"encryption",
"image-processing",
"image-transforms",
"imgproxy",
"imgproxy-php",
"php",
"signed-urls",
"url-builder"
],
"authors": [
{
"name": "Hosmel Quintana",
"email": "hosmelq@gmail.com"
}
],
"require": {
"php": "^8.3",
"ext-openssl": "*",
"thecodingmachine/safe": "^3.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"laravel/pint": "^1.25",
"pestphp/pest": "^4.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"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\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HosmelQ\\Imgproxy\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"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"
}