-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.74 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.74 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "atelier/svg",
"description": "PHP library for SVG manipulation, optimization, and morphing: parsing, building, styling, transforms, validation, and sanitization",
"license": "MIT",
"type": "library",
"homepage": "https://ateliersvg.com/svg/",
"keywords": [
"svg",
"optimization",
"morphing",
"parser",
"manipulation",
"vector-graphics",
"path",
"transform",
"sanitization",
"validation",
"accessibility",
"filter",
"gradient",
"animation"
],
"support": {
"issues": "https://github.com/ateliersvg/svg/issues",
"source": "https://github.com/ateliersvg/svg"
},
"authors": [
{
"name": "Simon André",
"email": "smn.andre@gmail.com",
"homepage": "https://smnandre.dev"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-xml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"Atelier\\Svg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atelier\\Svg\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"qa": [
"@cs",
"@sa",
"@test"
],
"sa": "vendor/bin/phpstan analyse --memory-limit=-1",
"test": "vendor/bin/phpunit"
}
}