-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.67 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
{
"name": "68publishers/file-storage",
"description": "File management based on Flysystem with an integration into Nette Framework.",
"keywords": ["68publishers", "file", "storage", "nette", "files"],
"license": "MIT",
"authors": [
{
"name": "Tomáš Glawaty",
"email": "tomasglawaty@icloud.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-fileinfo": "*",
"league/flysystem": "^3.12",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"68publishers/doctrine-bridge": "^1.0",
"doctrine/dbal": "^2.13.1 || ^3.1.1",
"fig/log-test": "^1.1",
"friendsofphp/php-cs-fixer": "^3.13",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.13",
"latte/latte": "^3.0",
"league/flysystem-memory": "^3.10",
"mockery/mockery": "^1.5",
"nette/application": "^3.1.8",
"nette/bootstrap": "^3.1",
"nette/di": "^3.0.10",
"nette/tester": "^2.4.3",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-nette": "^1.1",
"roave/security-advisories": "dev-latest",
"symfony/console": "^5.0 | ^6.0"
},
"suggest": {
"nette/di": "For an integration with Nette Framework.",
"68publishers/doctrine-bridge": "For an integration of a custom Doctrine types into the Nette.",
"latte/latte": "For usage with Latte templates.",
"symfony/console": "If you want to use a console commands."
},
"conflict": {
"nette/di": "<3.0.10",
"nette/schema": "<1.1",
"latte/latte": "<3.0",
"68publishers/doctrine-bridge": "<1.0",
"symfony/console": "<5.0"
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\FileStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SixtyEightPublishers\\FileStorage\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}