-
- Downloads
Initial commit
Showing
- .gitignore 6 additions, 0 deletions.gitignore
- .gitlab-ci.yml 51 additions, 0 deletions.gitlab-ci.yml
- .php-cs-fixer.dist.php 25 additions, 0 deletions.php-cs-fixer.dist.php
- .renovaterc.json 21 additions, 0 deletions.renovaterc.json
- LICENSE 661 additions, 0 deletionsLICENSE
- README.md 61 additions, 0 deletionsREADME.md
- composer.json 69 additions, 0 deletionscomposer.json
- composer.lock 9230 additions, 0 deletionscomposer.lock
- phpstan.neon 16 additions, 0 deletionsphpstan.neon
- phpunit.xml.dist 27 additions, 0 deletionsphpunit.xml.dist
- psalm.xml 16 additions, 0 deletionspsalm.xml
- src/DbpRelayLdapPersonProviderBundle.php 15 additions, 0 deletionssrc/DbpRelayLdapPersonProviderBundle.php
- src/DependencyInjection/Configuration.php 26 additions, 0 deletionssrc/DependencyInjection/Configuration.php
- src/DependencyInjection/DbpRelayLdapPersonProviderExtension.php 36 additions, 0 deletions...pendencyInjection/DbpRelayLdapPersonProviderExtension.php
- src/Resources/config/services.yaml 10 additions, 0 deletionssrc/Resources/config/services.yaml
- src/Service/CustomUserRoles.php 36 additions, 0 deletionssrc/Service/CustomUserRoles.php
- src/Service/LDAPApi.php 382 additions, 0 deletionssrc/Service/LDAPApi.php
- src/Service/LDAPPersonProvider.php 43 additions, 0 deletionssrc/Service/LDAPPersonProvider.php
- tests/Kernel.php 36 additions, 0 deletionstests/Kernel.php
- tests/bootstrap.php 5 additions, 0 deletionstests/bootstrap.php
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.php-cs-fixer.dist.php
0 → 100644
.renovaterc.json
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "dbp/relay-ldap-person-provider-bundle", | ||
"type": "symfony-bundle", | ||
"license": "AGPL-3.0-or-later", | ||
"require": { | ||
"php": "^7.3 || ^8.0", | ||
"ext-json": "*", | ||
"ext-simplexml": "*", | ||
"adldap2/adldap2": "^10.3", | ||
"dbp/relay-auth-bundle": "^0.1.6", | ||
"dbp/relay-base-person-bundle": "^0.1.5", | ||
"guzzlehttp/guzzle": "^7.3", | ||
"league/uri": "^6.5", | ||
"symfony/framework-bundle": "^5.2" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^3.0", | ||
"phpstan/phpstan": "^1.0.0", | ||
"phpstan/phpstan-phpunit": "^1.0.0", | ||
"symfony/browser-kit": "^5.2", | ||
"symfony/http-client": "^5.2", | ||
"symfony/monolog-bundle": "^3.7", | ||
"symfony/phpunit-bridge": "^5.2", | ||
"vimeo/psalm": "^4.2.1" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dbp\\Relay\\LdapPersonProviderBundle\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Dbp\\Relay\\LdapPersonProviderBundle\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.3" | ||
} | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@php vendor/bin/simple-phpunit" | ||
], | ||
"phpstan": [ | ||
"@php vendor/bin/simple-phpunit --atleast-version 0", | ||
"@php vendor/bin/phpstan analyze --ansi" | ||
], | ||
"psalm": [ | ||
"@php vendor/bin/simple-phpunit --atleast-version 0", | ||
"@php vendor/bin/psalm" | ||
], | ||
"lint": [ | ||
"@composer run cs", | ||
"@composer run phpstan", | ||
"@composer run psalm" | ||
], | ||
"cs-fix": [ | ||
"@php vendor/bin/php-cs-fixer --ansi fix" | ||
], | ||
"cs": [ | ||
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff" | ||
], | ||
"coverage": [ | ||
"@php vendor/bin/simple-phpunit --coverage-html _coverage" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
phpstan.neon
0 → 100644
phpunit.xml.dist
0 → 100644
psalm.xml
0 → 100644
src/DbpRelayLdapPersonProviderBundle.php
0 → 100644
src/DependencyInjection/Configuration.php
0 → 100644
src/Resources/config/services.yaml
0 → 100644
src/Service/CustomUserRoles.php
0 → 100644
src/Service/LDAPApi.php
0 → 100644
src/Service/LDAPPersonProvider.php
0 → 100644
tests/Kernel.php
0 → 100644
tests/bootstrap.php
0 → 100644
Please register or sign in to comment