-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
66 lines (66 loc) · 2.01 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
{
"name": "fsi/resource-repository-bundle",
"type": "symfony-bundle",
"description": "Resource repository bundle",
"keywords": ["fsi", "resource", "repository", "bundle", "symfony"],
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "FSi\\Bundle\\ResourceRepositoryBundle\\": "" }
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec",
"tests\\FSi\\Bundle\\ResourceRepositoryBundle\\": "tests"
}
},
"require": {
"php": "^7.4|^8.0",
"doctrine/dbal": "^2.8|^3.0",
"doctrine/doctrine-bundle": "^1.12|^2.0",
"symfony/dependency-injection": "^4.4|^5.4|^6.0",
"symfony/doctrine-bridge": "^4.4|^5.4|^6.0",
"symfony/form" : "^4.4|^5.4|^6.0",
"symfony/framework-bundle": "^4.4|^5.4|^6.0",
"symfony/property-access": "^4.4|^5.4|^6.0",
"symfony/validator": "^4.4|^5.4|^6.0",
"twig/twig": "^3.7"
},
"require-dev": {
"doctrine/orm": "^2.5|^3.0",
"friendsofsymfony/ckeditor-bundle": "^2.1",
"fsi/files": "^2.0.4",
"fsi/form-extensions-bundle": "^2.2",
"phpunit/phpunit": "^9.5|^10.0",
"phpspec/phpspec": "^7.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"squizlabs/php_codesniffer": "^3.5",
"symfony/phpunit-bridge": "^6.3"
},
"suggest": {
"fsi/files": "For using web_file resource type",
"friendsofsymfony/ckeditor-bundle": "For using ckeditor resource type"
},
"config": {
"bin-dir": "vendor/bin",
"allow-plugins": {
"ocramius/package-versions": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev",
"2.2": "2.2-dev",
"2.1": "2.1-dev",
"2.0": "2.0-dev",
"1.1": "1.1-dev",
"1.0": "1.0-dev"
}
}
}