-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 967 Bytes
/
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
{
"name": "cybercog/php-svg-font",
"description": "PHP SVG font parser",
"type": "library",
"license": "MIT",
"keywords": [
"svg",
"font",
"glyph",
"typography"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Cog\\SvgFont\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Unit\\Cog\\SvgFont\\": "test/"
}
},
"require": {
"php": "^8.1",
"cybercog/php-unicode": "^1.0"
},
"require-dev": {
"ext-simplexml": "*",
"phpunit/phpunit": "^10.5"
},
"suggest": {
"ext-simplexml": "*"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable" : true
}