-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.42 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
52
53
{
"name": "vierwd/svg-inliner",
"description": "Utility functions to inline SVGs in PHP Projects",
"type": "library",
"license": "MIT",
"keywords": [
"SVG",
"HTML",
"inline"
],
"support": {
"issues": "https://github.com/4wdmedia/svg-inliner/issues"
},
"authors": [
{
"name": "Robert Vock",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4.0 | ^8.0 | ^8.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5 | ^9.5",
"friendsofphp/php-cs-fixer": "^2.12",
"vierwd/coding-standard": "^1.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.1.0"
},
"autoload": {
"psr-4": {
"Vierwd\\SvgInliner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vierwd\\SvgInliner\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"if [[ -f vendor/bin/phpcs ]]; then vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=vendor/vierwd/coding-standard/ForwardMedia src tests; fi"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}