-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.55 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
{
"name": "gubler/ad-search-bundle",
"type": "symfony-bundle",
"description": "Active Directory search for Symfony",
"keywords": [ "activedirectory", "active-directory", "symfony", "bundle" ],
"homepage": "https://github.com/gubler/gubleradsearchbundle",
"license": "MIT",
"authors": [
{
"name": "Daryl Gubler",
"email": "[email protected]",
"homepage": "https://dev88.co",
"role": "Creator"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-ldap": "*",
"symfony/uid": "^6.2|^7.0",
"symfony/ldap": "^6.2|^7.0",
"symfony/http-kernel": "^6.2|^7.0",
"symfony/console": "^6.2|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.6",
"symfony/var-dumper": "^6.2|^7.4",
"tomasvotruba/type-coverage": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "Gubler\\ADSearchBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Gubler\\ADSearchBundle\\Test\\": "tests/" }
}
}