-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.21 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
{
"name": "t3g/symfony-ldap-bundle",
"type": "symfony-bundle",
"description": "TYPO3 LDAP Bundle",
"keywords": [
"TYPO3",
"LDAP"
],
"homepage": "http://www.typo3.com",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Jurian Janssen",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"psr/log": "^1.1",
"symfony/config": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/framework-bundle": "^4.3",
"symfony/http-foundation": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/ldap": "^4.3",
"symfony/security-bundle": "^4.3",
"symfony/security-core": "^4.3",
"symfony/security-http": "^4.3",
"symfony/validator": "^4.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.2",
"phpstan/phpstan": "^0.12.5",
"phpstan/phpstan-deprecation-rules": "^0.12.2",
"phpstan/phpstan-strict-rules": "^0.12.1"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.0"
}
},
"autoload": {
"psr-4": {
"T3G\\Bundle\\LdapBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Bundle\\LdapBundle\\Tests\\": "tests/"
}
}
}