forked from stil/gd-text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.36 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "norman-huth/gd-text",
"description": "A class drawing multiline and aligned text on pictures. Uses GD extension.",
"license": "MIT",
"support": {
"issues": "https://github.com/Muetze42/gd-text/issues",
"source": "https://github.com/Muetze42/gd-text",
"docs": "https://github.com/Muetze42/gd-text#readme"
},
"keywords": [
"dynamic-image",
"ext-gd",
"gd",
"gd-library",
"image",
"image-generator",
"image-manipulation",
"laravel",
"php",
"php-8",
"text-to-image"
],
"authors": [
{
"name": "nstil",
"homepage": "https://github.com/stil"
},
{
"name": "Cristian Mirea-Ghiban",
"homepage": "https://github.com/liviucmg"
},
{
"name": "Helmut Januschka",
"homepage": "https://github.com/hjanuschka"
},
{
"name": "Norman Huth",
"homepage": "https://huth.it"
}
],
"require": {
"php": "^8.0",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"GDText\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GDText\\Tests\\": "tests/"
}
}
}