-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.17 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.17 KB
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
{
"name": "jmikola/auto-login-bundle",
"type": "symfony-bundle",
"description": "Authenticate users in your Symfony app via a single query parameter (e.g. email and newsletter links).",
"keywords": ["authentication", "auto-login", "login", "security"],
"homepage": "https://github.com/jmikola/JmikolaAutoLoginBundle",
"license": "MIT",
"authors": [
{ "name": "Jeremy Mikola", "email": "[email protected]" }
],
"require": {
"php": ">=7.1",
"symfony/config": "^4.3 || ^5.0",
"symfony/dependency-injection": "^4.3 || ^5.0",
"symfony/http-kernel": "^4.3 || ^5.0",
"symfony/security-bundle": "^4.3 || ^5.0",
"jmikola/auto-login": "^2.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^3.0 || ^4.0",
"phpunit/phpunit": "^7.0 || ^8.0",
"symfony/browser-kit": "^4.3 || ^5.0",
"symfony/framework-bundle": "^4.3 || ^5.0"
},
"autoload": {
"psr-0": { "Jmikola\\AutoLoginBundle": "" }
},
"target-dir": "Jmikola/AutoLoginBundle",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}