-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
73 lines (73 loc) · 1.87 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
{
"name": "atk4/filestore",
"description": "Integration between ATK UI Form Upload Field and PHP Flysystem",
"license": "MIT",
"type": "library",
"keywords": [
"image",
"upload",
"filestore",
"flysystem",
"atk4",
"agile",
"agile ui",
"data",
"framework"
],
"version": "dev-develop",
"authors": [
{
"name": "Romans Malinovskis",
"email": "romans@agiletoolkit.org",
"homepage": "https://nearly.guru/"
},
{
"name": "Michael Voříšek",
"homepage": "https://mvorisek.cz/"
},
{
"name": "Imants Horsts",
"homepage": "http://darkside.lv/"
}
],
"homepage": "https://github.com/atk4/filestore",
"require": {
"php": ">=7.4 <8.4",
"atk4/ui": "dev-develop",
"league/flysystem": "^2.0"
},
"require-release": {
"php": ">=7.4 <8.4",
"atk4/ui": "~5.0.0",
"league/flysystem": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "^3.0",
"johnkary/phpunit-speedtrap": "^3.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "^9.5.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atk4\\Filestore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atk4\\Filestore\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}