-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 910 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 910 Bytes
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
{
"name": "san/user-list-bundle",
"type": "symfony-bundle",
"description": "Exercise platform user list bundle",
"keywords": ["exercise", "platform", "user", "list", "bundle"],
"homepage": "https://github.com/Exercise/SanUserListBundle.git",
"license": "MIT",
"authors": [
{ "name": "Alex Kovalevych", "email": "alexkovalevych@gmail.com" }
],
"require": {
"php": ">=5.4",
"symfony/framework-bundle": "~2.2",
"friendsofsymfony/user-bundle": ">=1.3"
},
"suggest": {
"sonata-project/doctrine-orm-admin-bundle": "If you're using ORM",
"sonata-project/doctrine-mongodb-admin-bundle": "If you're using ODM"
},
"autoload": {
"psr-0": { "San\\UserListBundle": "" }
},
"target-dir": "San/UserListBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}