-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 3.06 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 3.06 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
{
"name": "dereuromark/cakephp-file-storage",
"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.",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"file",
"filesystem",
"media",
"abstraction",
"upload",
"cakephp",
"storage",
"admin-panel"
],
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://github.com/dereuromark"
},
{
"name": "Other contributors",
"homepage": "https://github.com/dereuromark/cakephp-file-storage/graphs/contributors",
"role": "Contributors"
}
],
"homepage": "https://github.com/dereuromark/cakephp-file-storage",
"require": {
"php": ">=8.2",
"brick/varexporter": "^0.5.0 || ^0.6.0 || ^0.7.0",
"cakephp/cakephp": "^5.1.1",
"php-collective/file-storage": "^1.0.0"
},
"require-dev": {
"cakephp/migrations": "^5.0.0",
"php-collective/code-sniffer": "dev-master",
"php-collective/file-storage-image-processor": "^1.0.0",
"phpunit/phpunit": "^11.5 || ^12.1 || ^13.0"
},
"suggest": {
"cakephp/migrations": "For migrations to run.",
"php-collective/file-storage-image-processor": "Required if you want to use the image processing feature of FileStorage"
},
"conflict": {
"cakephp/migrations": "<4.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FileStorage\\": "src/",
"FileStorage\\Test\\Fixture\\": "tests/Fixture/"
}
},
"autoload-dev": {
"psr-4": {
"FileStorage\\Test\\TestCase\\": "tests/TestCase/",
"TestApp\\": "tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@stan"
],
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml",
"cs-check": "phpcs --colors --parallel=16",
"cs-fix": "phpcbf --colors --parallel=16",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"stan": "phpstan analyze",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^2.0.0 && mv composer.backup composer.json",
"stan-test": "phpstan analyze tests/",
"test": "phpunit"
}
}