-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.04 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
{
"name": "illchuk/zfc-user-forgot-password",
"description": "A \"user forgot password\" framework for ZfcUser 3 and Doctrine",
"type": "library",
"license": "MIT",
"keywords": [
"zf3",
"zfcuser",
"forgot",
"doctrine"
],
"homepage": "https://github.com/dillchuk/ZfcUserForgotPassword",
"authors": [
{
"name": "Derek Illchuk",
"email": "[email protected]",
"homepage": "http://www.derekillchuk.com"
}
],
"require": {
"php": "^5.6|^7.0",
"zf-commons/zfc-user": "^3.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-orm-module": "^1.0",
"zf-commons/zfc-user-doctrine-orm": "^2.0",
"beaucal/beaucal-util": "^0.1",
"phpoption/phpoption": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "2.0.x-dev",
"fzaninotto/faker": "^1.7"
},
"autoload": {
"psr-4": {
"ZfcUserForgotPassword\\": "src/"
}
}
}