forked from mariuswilms/coupon_code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 710 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 710 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
{
"name": "atelierdisko/coupon_code",
"description": "PHP library to generate and validate coupon code strings.",
"keywords": ["coupon", "voucher", "code", "token", "key"],
"homepage": "https://github.com/mariuswilms/coupon_code",
"license": "BSD-3-clause",
"authors": [
{
"name": "Marius Wilms",
"homepage": "https://mariuswilms.com"
}
],
"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/" }
}
}