-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.14 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
51
{
"name": "binafy/php-color-generator",
"description": "Generate colors with PHP",
"keywords": [
"binafy",
"milwad",
"php",
"library",
"php-color",
"php-color-generator",
"color-generator",
"hex",
"php-generator-color",
"hex-to-rgb",
"rgb"
],
"homepage": "https://github.com/binafy/php-color-generator",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Milwad Khosravi",
"email": "milwad.dev@gmail.com",
"role": "author",
"homepage": "https://github.com/milwad-dev"
},
{
"name": "Binafy",
"role": "owner",
"homepage": "https://github.com/binafy"
}
],
"autoload": {
"psr-4": {
"Binafy\\PhpColorGenerator\\": "src/"
}
},
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}