-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·65 lines (65 loc) · 1.74 KB
/
composer.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.74 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
{
"name": "plumtreesystems/file-bundle",
"type": "symfony-bundle",
"license": "MIT",
"version": "3.0.0",
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"aws/aws-sdk-php": "^3.0",
"symfony/console": "^7.2",
"symfony/deprecation-contracts": "^3.3",
"symfony/dotenv": "^7.2",
"symfony/flex": "^2",
"symfony/form": "^7.2",
"symfony/framework-bundle": "^7.2",
"symfony/mime": "^7.2",
"symfony/security-bundle": "^7.2",
"symfony/twig-bundle": "^7.2",
"symfony/validator": "^7.2",
"symfony/yaml": "^7.2"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"PlumTreeSystems\\FileBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PlumTreeSystems\\FileBundle\\Tests\\": "Tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^10.0",
"slevomat/coding-standard": "^8.11",
"squizlabs/php_codesniffer": "3.7.2",
"symfony/browser-kit": "^7.2",
"symfony/css-selector": "^7.2"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"extra": {
"symfony": {
"require": "7.2.*"
}
}
}