-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "iwouldrathercode/php-simple-coupons",
"description": "PHP package to help generates simple and unique coupon codes using random_bytes",
"type": "library",
"license": "MIT",
"keywords": [
"coupons",
"random_bytes",
"generator",
"token",
"coupon",
"voucher",
"unique",
"simple",
"simple coupon"
],
"support": {
"issues": "https://github.com/iwouldrathercode/php-simple-coupons/issues",
"source": "https://github.com/iwouldrathercode/php-simple-coupons"
},
"authors": [
{
"name": "Karthik Bharadwaj",
"email": "[email protected]"
},
{
"name": "Shankar Ganesh",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/var-dumper": "^4.1",
"jakub-onderka/php-console-color": "^0.2.0",
"clagiordano/phpunit-result-printer": "^2.0"
},
"autoload": {
"psr-4" : {
"Iwouldrathercode\\SimpleCoupons\\": "src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}