-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
76 lines (75 loc) · 1.92 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
{
"name": "php-collective/file-storage-image-processor",
"description": "File Storage Image Processor",
"keywords": ["storage", "files", "file storage", "file system", "persistence", "media", "image processing", "agnostic"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Florian Krämer",
"role": "Maintainer"
},
{
"name": "Mark Scherer",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.1",
"intervention/image": "^2.5",
"spatie/image-optimizer": "^1.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"phpstan/phpstan": "^1.10",
"php-collective/code-sniffer": "^0.2.1",
"php-collective/file-storage": "dev-master as 1.0",
"instituteweb/composer-scripts": "^1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"PhpCollective\\Infrastructure\\Storage\\Processor\\Image\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCollective\\Test\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"php config/composer_post_install.php"
],
"test": [
"phpunit"
],
"test-coverage": [
"phpunit --coverage-text"
],
"test-coverage-html": [
"phpunit --coverage-html ./tmp/coverage"
],
"cs-check": [
"phpcs -s"
],
"cs-fix": [
"phpcbf"
],
"stan": [
"phpstan analyze"
],
"serve": [
"php -S localhost:8081 -t ./public"
]
}
}