-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
105 lines (105 loc) · 3.77 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fsi/admin-security-bundle",
"type": "symfony-bundle",
"description": "Authentication & authorization mechanisms for fsi/admin-bundle",
"keywords": ["admin", "panel", "symfony", "bundle", "fsi", "security"],
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "norbert@orzechowicz.pl"
}
],
"require": {
"php": "^7.4|^8.0",
"beberlei/assert": "^3.3",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.7|^3.0",
"doctrine/persistence": "^2.5|^3.0",
"fsi/admin-bundle" : "^4.0",
"fsi/data" : "^1.0.2",
"psr/clock": "^1.0",
"symfony/console": "^4.4|^5.4|^6.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/mailer": "^4.4|^5.4|^6.0",
"symfony/property-access": "^4.4|^5.4|^6.0",
"symfony/security-bundle": "^4.4|^5.4|^6.0",
"symfony/twig-bundle": "^4.4|^5.4|^6.0",
"symfony/validator": "^4.4|^5.4|^6.0",
"twig/twig": "^3.6"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"behat/behat": "^3.11",
"behat/mink": "^1.10",
"behat/mink-selenium2-driver": "^1.6",
"caciobanu/behat-deprecation-extension": "^2.1",
"egulias/email-validator": "^3.2|^4.0",
"friendsofphp/proxy-manager-lts": "^1.0",
"friends-of-behat/mink-browserkit-driver": "^1.6.1",
"friends-of-behat/mink-extension": "^2.7.4",
"friends-of-behat/page-object-extension": "^0.3.2",
"friends-of-behat/symfony-extension": "^2.4.1",
"friends-of-phpspec/phpspec-expect": "^4.0",
"fsi/resource-repository-bundle": "^2.2|^3.0.2",
"fsi/translatable": "^1.0",
"ocramius/proxy-manager": "^2.5",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-beberlei-assert": "^1.0",
"squizlabs/php_codesniffer": "^3.7",
"symfony/dom-crawler": "^4.4|^5.4|^6.0",
"symfony/error-handler": "^4.4|^5.4|^6.0",
"symfony/event-dispatcher": "^4.4|^5.4|^6.0",
"symfony/http-kernel": "^4.4|^5.4|^6.0",
"symfony/monolog-bridge": "^4.4|^5.4|^6.0",
"symfony/monolog-bundle": "^3.8",
"symfony/routing": "^4.4|^5.4|^6.0",
"symfony/twig-bridge": "^4.4|^5.4|^6.0",
"symfony/var-dumper": "^4.4|^5.4|^6.0",
"rize/uri-template": "^0.3.5"
},
"conflict": {
"doctrine/doctrine-cache-bundle": "<1.4.0",
"fsi/datagrid": "*",
"fsi/datasource": "*",
"twig/twig": "<2.0",
"symfony/property-info": ">=7.0",
"symfony/expression-language": "<4.4"
},
"config": {
"bin-dir": "vendor/bin"
},
"autoload": {
"psr-4": {
"FSi\\Bundle\\AdminSecurityBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"FSi\\FixturesBundle\\": "features/fixtures/project/src",
"FSi\\Bundle\\AdminSecurityBundle\\Behat\\": "Behat",
"spec\\FSi\\Bundle\\AdminSecurityBundle\\": "spec/FSi/Bundle/AdminSecurityBundle",
"FSi\\Bundle\\AdminSecurityBundle\\spec\\fixtures\\": "spec/fixtures"
}
},
"scripts": {
"sniffer": "vendor/bin/phpcs",
"spec": "vendor/bin/phpspec run -f pretty",
"stan": "vendor/bin/phpstan analyze -c phpstan.neon",
"behat": "vendor/bin/behat"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev",
"3.2": "3.2-dev",
"3.1": "3.1-dev",
"3.0": "3.0-dev",
"2.0": "2.0-dev",
"1.0": "1.0-dev"
}
}
}