forked from burzum/cakephp-file-storage
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
79 lines (79 loc) · 3.09 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": "burzum/cakephp-file-storage",
"type": "cakephp-plugin",
"description": "This plugin is giving you the possibility to store files in virtually any kind of storage backend. This plugin is wrapping the Gaufrette library (https://github.com/KnpLabs/Gaufrette) library in a CakePHP fashion and provides a simple way to use the storage adapters through the StorageManager class.",
"keywords": ["file", "filesystem", "media", "abstraction", "upload", "cakephp", "storage"],
"homepage": "http://github.com/burzum/cakephp-file-storage-plugin",
"license": "MIT",
"authors": [
{
"name": "Florian Krämer",
"homepage": "http://florian-kraemer.net"
},
{
"name": "Other contributors",
"homepage": "https://github.com/burzum/cakephp-file-storage/graphs/contributors",
"role": "Contributors"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"dereuromark/cakephp-shim": "^3.0.0",
"cakephp/plugin-installer": "^2.0.0",
"knplabs/gaufrette": "^0.7.0|^0.8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"vlucas/phpdotenv": "^3.3",
"cakephp/cakephp-codesniffer": "^4.0",
"burzum/cakephp-imagine-plugin": "^5.0",
"league/flysystem": "^1.0.0",
"aws/aws-sdk-php": "*"
},
"autoload": {
"psr-4": {
"Burzum\\FileStorage\\": "src",
"Burzum\\FileStorage\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "/vendor/cakephp/cakephp/tests",
"Burzum\\FileStorage\\Test\\": "tests"
}
},
"suggest": {
"burzum/cakephp-imagine-plugin": "Required if you want to use the image processing feature of FileStorage",
"league/flysystem": "Alternative for Gaufrette, see the docs how to configure it."
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:CakeDC/cakephp-imagine-plugin.git"
}
],
"scripts": {
"check": [
"@cs-check",
"@test",
"@stan"
],
"cs-check": "phpcs -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"stan": "phpstan analyse src/ && psalm --show-info=false",
"stan-test": "phpstan analyse tests/",
"psalm": "psalm --show-info=false",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.11 vimeo/psalm:^3.0 && mv composer.backup composer.json",
"rector": "rector process src/",
"rector-setup": "cp composer.json composer.backup && composer require --dev rector/rector:^0.4.11 && mv composer.backup composer.json",
"test": "phpunit",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}