-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.11 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
{
"name": "iter8/ldaprecord-bundle",
"description": "LdapRecord for Symfony bundle",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"symfony-bundle",
"ldap"
],
"support": {
"issues": "https://github.com/iter8-au/ldaprecord-bundle/issues",
"source": "https://github.com/iter8-au/ldaprecord-bundle"
},
"require": {
"php": ">=8.1",
"ext-ldap": "*",
"directorytree/ldaprecord": "^3.0",
"symfony/framework-bundle": "^6.3"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Iter8\\LdapRecordBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iter8\\LdapRecordBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"symfony/flex": true
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"ci": [
"@phpcs",
"@phpunit",
"@phpstan",
"@psalm"
],
"csf": "php-cs-fixer fix",
"csf-dry": "@csf --dry-run -v --diff",
"phpcs": "phpcs",
"phpstan": "phpstan analyze",
"phpstan-dev": "@phpstan --debug",
"phpstan-max": "@phpstan --level=max",
"phpunit": "phpunit",
"psalm": "psalm",
"psalm-dev": "@psalm --show-info=true --find-unused-psalm-suppress --no-cache --stats"
}
}