-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 950 Bytes
/
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
{
"name": "beelab/phone-verification-bundle",
"type": "symfony-bundle",
"description": "Simple phone verification for Symfony",
"keywords": ["phone", "verification", "confirmation"],
"homepage": "https://bee-lab.net",
"license": "LGPL-3.0",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"symfony/symfony": "~2.3|~3.0",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"sensio/framework-extra-bundle": "~2.3|~3.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"suggest": {
"zen/skebby-bundle": "For Skebby adapter"
},
"autoload": {
"psr-4": { "Beelab\\PhoneVerificationBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
}
}