-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.24 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.24 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
45
{
"name": "sanchobbdo/codes",
"description": "Promotional codes generator and validator.",
"type": "library",
"keywords": [
"promotion",
"sweepstake",
"code generator",
"code validator",
"coupons"
],
"homepage": "https://github.com/sanchobbdo/codes",
"license": "MIT",
"authors": [
{
"name": "Camilo Aguilar",
"email": "camiloaguilar@sanchobbdo.com.co",
"homepage": "https://github.com/camagu",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.2",
"symfony/config": ">=2.2.0"
},
"suggest": {
"sonata-project/exporter": "To export codes using the built-in console app",
"symfony/console": "To export codes using the built-in console app",
"symfony/yaml": "To export codes using the built-in console app"
},
"autoload": {
"psr-0": {
"SanchoBBDO\\Tests": "tests/",
"SanchoBBDO": "src/"
}
},
"require-dev": {
"mikey179/vfsStream": "1.1.*",
"phpunit/phpunit": "3.7.*",
"sonata-project/exporter": "1.2.*",
"symfony/console": "~2",
"symfony/yaml": "~2"
},
"bin": ["bin/codes"]
}