-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 loc) · 1.14 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
{
"name": "rakoitde/shieldldap",
"description": "LDAP Authentication and Authorization for CodeIgniter 4",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Rakoitde\\Shieldldap\\": "src/"
}
},
"authors": [
{
"name": "Kornberger, Ralf",
"email": "rakoitde@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"codeigniter4/shield": "^1.0",
"ext-ldap": "*"
},
"require-dev": {
"codeigniter4/framework": "dev-master",
"codeigniter4/devkit": "^1.1",
"rector/rector": "^0.17.7"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"analyze": [
"phpstan analyze",
"psalm",
"rector process --dry-run"
],
"test": "phpunit",
"cs": [
"php-cs-fixer fix --ansi --verbose --dry-run --diff"
],
"cs-fix": [
"php-cs-fixer fix --ansi --verbose --diff"
],
"style": "@cs-fix"
}
}