This repository was archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.32 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.32 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
35
36
37
38
39
40
41
42
43
44
{
"name": "bacon/bacon-user",
"description": "BaconUser provides simple user management",
"license" : "BSD-2-Clause",
"homepage": "https://github.com/Bacon/BaconUser",
"require": {
"php": ">=5.3.3",
"doctrine/common": "~2.3",
"doctrine/doctrine-module": ">=0.7",
"zendframework/zend-authentication": "~2.2",
"zendframework/zend-crypt": "~2.2",
"zendframework/zend-form": "~2.2",
"zendframework/zend-inputfilter": "~2.2",
"zendframework/zend-math": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-validator": "~2.2",
"zendframework/zend-view": "~2.2"
},
"require-dev": {
"phpunit/PHPUnit": "3.7.*",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
"bacon/bacon-liquibase": "For liquibase database migrations"
},
"authors": [
{
"name": "Ben Scholzen 'DASPRiD'",
"email": "mail@dasprids.de",
"homepage": "http://www.dasprids.de",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"BaconUser": "src/"
},
"classmap": [
"./Module.php"
]
}
}