-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 3.32 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 3.32 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
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
91
92
93
94
95
96
{
"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": "norbert@orzechowicz.pl"
}
],
"require": {
"php": "^8.1",
"psr/event-dispatcher": "^1.0",
"symfony/event-dispatcher" : "^4.4.30|^5.4|^6.0|^7.0",
"symfony/property-access": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/options-resolver": "^5.4|^6.0|^7.0",
"twig/twig": "^3.12"
},
"require-dev": {
"ext-dom": "*",
"doctrine/collections": "^1.7|^2.0",
"doctrine/dbal": "^3.4|^4.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/orm": "^2.14|^3.0",
"doctrine/persistence": "^2.4|^3.0|^4.0",
"friendsofsymfony/elastica-bundle": "^6.3",
"fsi/files": "^2.0.2|^3.0",
"gedmo/doctrine-extensions": "^3.5",
"nyholm/psr7": "^1.8",
"oneup/flysystem-bundle": "^4.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^10.5",
"psr/http-client": "^1.0",
"ruflin/elastica": "^7.2",
"seec/phpunit-consecutive-params": "^1.1.1",
"squizlabs/php_codesniffer": "^4.0",
"symfony/browser-kit": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/cache": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/clock": "^6.4|^7.0",
"symfony/css-selector": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/config": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/doctrine-bridge": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/dom-crawler": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/form": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/finder": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^4.4.40|^5.4|^6.0|^7.0",
"symfony/http-client": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/http-kernel": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/routing": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/security-core": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/security-csrf": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/translation": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/twig-bridge": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/validator": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/var-exporter": "^4.4.30|^5.4|^6.0|^7.0",
"symfony/yaml": "^4.4.30|^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"FSi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\FSi\\": "tests"
}
},
"conflict": {
"symfony/property-info": ">=8.0"
},
"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.3-dev",
"1.2": "1.2-dev",
"1.1": "1.1-dev",
"1.0": "1.0-dev"
}
}
}