forked from mariuswilms/coupon_code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "putchi/coupon_code",
"description": "PHP library to generate and validate coupon code strings.",
"keywords": ["coupon", "voucher", "code", "token", "key"],
"homepage": "https://github.com/putchi/coupon_code",
"license": "BSD-3-clause",
"authors": [
{
"name": "Atelier Disko",
"homepage": "http://atelierdisko.de"
},
{
"name": "Alex (putchi) Rabinovich",
"homepage": "https://github.com/putchi"
}
],
"type": "package",
"version": "1.1.2",
"minimum-stability": "stable",
"source": {
"url": "git://github.com/putchi/coupon_code.git",
"type": "git",
"reference": "master"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0"
},
"suggest": {
"ext-mcrypt": "The mcrypt extension must be installed if /dev/urandom is not available."
},
"autoload": {
"psr-4": { "CouponCode\\": "src/" }
}
}