-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
67 lines (67 loc) · 1.79 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
{
"name": "contributte/imagist",
"description": "Image library for Nette Framework",
"type": "library",
"license": [
"MIT"
],
"require": {
"php": ">=8.1",
"ext-fileinfo": "*",
"nette/utils": "^4.0.3",
"league/flysystem": "^2.5.0 || ^3.23.0",
"psr/event-dispatcher": "^1.0.0"
},
"require-dev": {
"codeception/codeception": "^5.0.13",
"codeception/module-asserts": "^3.0.0",
"codeception/module-phpbrowser": "^3.0.1",
"phpunit/php-code-coverage": "^10.1.11",
"doctrine/annotations": "^1.14.3",
"doctrine/dbal": "^3.7.2",
"imagine/imagine": "^1.3.5",
"latte/latte": "^3.0.12",
"nette/application": "^3.1.2",
"nette/di": "^3.1.8",
"nette/forms": "^3.1.14",
"nette/http": "^3.2.3",
"nettrine/orm": "^0.8.4",
"contributte/qa": "^0.4",
"contributte/phpunit": "^0.2",
"contributte/phpstan": "^0.1",
"ramsey/uuid": "^4.7.5",
"spatie/temporary-directory": "^1.3.0",
"symfony/dependency-injection": "^6.4.0 || ^7.0.0",
"symfony/filesystem": "^6.4.0 || ^7.0.0",
"symfony/http-foundation": "^6.4.0 || ^7.0.0",
"symfony/http-kernel": "^6.4.0 || ^7.0.0",
"symfony/serializer": "^6.4.0 || ^7.0.0",
"tracy/tracy": "^2.10.5",
"league/flysystem-google-cloud-storage": "^2.4.4 || ^3.22.0"
},
"autoload": {
"psr-4": {
"Contributte\\Imagist\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Testing\\": "tests/src",
"Tests\\Unit\\": "tests/unit",
"Tests\\Functional\\": "tests/functional"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}