-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
90 lines (90 loc) · 3.03 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fsi/data",
"type": "library",
"description": "FSi Data set of components and symfony bundles",
"keywords": ["fsi", "component", "datagrid", "datasource", "symfony", "bundle"],
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"psr/event-dispatcher": "^1.0",
"symfony/event-dispatcher" : "^4.4.30|^5.4|^6.0",
"symfony/property-access": "^4.4.30|^5.4|^6.0",
"symfony/options-resolver": "^5.4|^6.0",
"twig/twig": "^3.9"
},
"require-dev": {
"ext-dom": "*",
"doctrine/collections": "^1.7|^2.0",
"doctrine/dbal": "^3.4",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/orm": "^2.14|^3.0",
"doctrine/persistence": "^2.4|^3.0",
"friendsofsymfony/elastica-bundle": "^6.3",
"fsi/files": "^2.0.2",
"gedmo/doctrine-extensions": "^3.5",
"nyholm/psr7": "^1.8",
"oneup/flysystem-bundle": "^4.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10.5",
"psr/http-client": "^1.0",
"ruflin/elastica": "^7.2",
"seec/phpunit-consecutive-params": "^1.1.1",
"squizlabs/php_codesniffer": "^3.7",
"symfony/browser-kit": "^4.4.30|^5.4|^6.0",
"symfony/cache": "^4.4.30|^5.4|^6.0",
"symfony/css-selector": "^4.4.30|^5.4|^6.0",
"symfony/config": "^4.4.30|^5.4|^6.0",
"symfony/doctrine-bridge": "^4.4.30|^5.4|^6.0",
"symfony/dom-crawler": "^4.4.30|^5.4|^6.0",
"symfony/dependency-injection": "^4.4.30|^5.4|^6.0",
"symfony/form": "^4.4.30|^5.4|^6.0",
"symfony/finder": "^4.4.30|^5.4|^6.0",
"symfony/framework-bundle": "^4.4.30|^5.4|^6.0",
"symfony/http-client": "^4.4.30|^5.4|^6.0",
"symfony/http-kernel": "^4.4.30|^5.4|^6.0",
"symfony/routing": "^4.4.30|^5.4|^6.0",
"symfony/security-core": "^4.4.30|^5.4|^6.0",
"symfony/security-csrf": "^4.4.30|^5.4|^6.0",
"symfony/translation": "^4.4.30|^5.4|^6.0",
"symfony/twig-bridge": "^4.4.30|^5.4|^6.0",
"symfony/twig-bundle": "^4.4.30|^5.4|^6.0",
"symfony/validator": "^4.4.30|^5.4|^6.0",
"symfony/var-exporter": "^4.4.30|^5.4|^6.0",
"symfony/yaml": "^4.4.30|^5.4|^6.0"
},
"autoload": {
"psr-4": {
"FSi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\FSi\\": "tests"
}
},
"config": {
"bin-dir": "vendor/bin",
"allow-plugins": {
"ocramius/package-versions": true
}
},
"scripts": {
"sniffer": "vendor/bin/phpcs",
"stan": "vendor/bin/phpstan analyze -c phpstan.neon",
"unit": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev",
"1.0": "1.0-dev"
}
}
}