-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "2lenet/entity-file-bundle",
"type": "symfony-bundle",
"description": "This package allows you to attach files to entities",
"license": "MIT",
"autoload": {
"psr-4": {
"Lle\\EntityFileBundle\\": "src/"
}
},
"authors": [
{
"name": "2LE"
}
],
"require": {
"php": "^8.1",
"league/flysystem-bundle": "^3.0",
"doctrine/orm": "^2.12",
"doctrine/doctrine-bundle": "^2.6",
"symfony/webpack-encore-bundle": "^2.0",
"gedmo/doctrine-extensions": "^3.7",
"symfony/form": "^6.1 || ^7.1"
},
"require-dev": {
"phpstan/phpstan": "^1.6",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.1",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^7.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}