-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 925 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 925 Bytes
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
{
"name": "iphis/adldap2",
"type": "symfony-bundle",
"description": "A Bundle to integrate the ADLDAP2 Library",
"keywords": [
"ad",
"ldap"
],
"homepage": "https://github.com/iphis/symfony-adldap2",
"license": "MIT",
"authors": [
{
"name": "Tobias Knipping",
"email": "knipping@tk-schulsoftware.de"
}
],
"require": {
"php": ">=7.0",
"adldap2/adldap2": "^10",
"symfony/config": "^3.4.30|^4.3",
"symfony/dependency-injection": "^3.4.30|^4.3",
"symfony/http-kernel": "^3.4.30|^4.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.2",
"symfony/phpunit-bridge": "^4.2"
},
"autoload": {
"psr-4": {
"IPHIS\\Adldap2Bundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"IPHIS\\Adldap2Bundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}