-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.36 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
{
"name": "spyck/authentication-bundle",
"description": "Authentication Bundle for Symfony",
"license": "MIT",
"authors": [
{
"name": "Willem Verspyck",
"email": "willemverspyck@outlook.com",
"homepage": "https://verspyck.com",
"role": "Developer"
}
],
"keywords": [
"authentication",
"hwi",
"php"
],
"homepage": "https://github.com/willemverspyck/authentication-bundle",
"type": "library",
"require": {
"php": "^8.2",
"doctrine/collections": "^2",
"hwi/oauth-bundle": "^2",
"symfony/config": "^6|^7",
"symfony/dependency-injection": "^6|^7",
"symfony/framework-bundle": "^6|^7",
"symfony/http-foundation": "^6|^7",
"symfony/http-kernel": "^6|^7",
"symfony/polyfill-intl-icu": "^1",
"symfony/routing": "^6|^7",
"symfony/security-core": "^6|^7"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3",
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"Spyck\\AuthenticationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spyck\\AuthenticationBundle\\Tests\\": "tests/"
}
}
}