-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (98 loc) · 2.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "yiirocks/svg-inline",
"description": "Inline SVG Images for Yii",
"type": "yii3-extension",
"keywords": [
"yii",
"yii3",
"extension",
"icon",
"icons",
"svg",
"inline"
],
"homepage": "https://www.yii.rocks/svg-inline/",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Mr.42",
"homepage": "https://mr42.me/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/YiiRocks/svg-inline/issues",
"source": "https://github.com/YiiRocks/svg-inline/tree/master"
},
"require": {
"php": ">=7.4.0",
"ext-dom": "*",
"yiisoft/aliases": "^2.0",
"yiisoft/html": "^2.2",
"yiisoft/yii-view": "^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"httpsoft/http-message": "^1.0",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.1",
"yiirocks/svg-inline-bootstrap": "^1.0",
"yiirocks/svg-inline-fontawesome": "^1.0",
"yiisoft/config": "^1.0",
"yiisoft/di": "^3.0",
"yiisoft/files": "^1.0",
"yiisoft/log": "^1.0"
},
"autoload": {
"psr-4": {
"YiiRocks\\SvgInline\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"YiiRocks\\SvgInline\\cs\\": "cs",
"YiiRocks\\SvgInline\\tests\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"php-cs-fixer": "@php vendor/bin/php-cs-fixer fix",
"phpcs": "@php vendor/bin/phpcs",
"phpmd": "@php vendor/bin/phpmd src/ text tests/data/phpmd_ruleset.xml",
"phpunit": "@php vendor/bin/phpunit --colors=always"
},
"scripts-descriptions": {
"php-cs-fixer": "Cleans to code with PHP Coding Standards Fixer.",
"phpcs": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
"phpmd": "PHP Mess Detector.",
"phpunit": "PHPUnit - programmer-oriented testing framework."
},
"suggest": {
"yiirocks/svg-inline-bootstrap": "Bootstrap Icons are designed to work with Bootstrap components, from form controls to navigation.",
"yiirocks/svg-inline-fontawesome": "Get vector icons and social logos on your website with Font Awesome, the web's most popular icon set and toolkit."
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin": {
"common": "common.php",
"params": "params.php"
}
},
"config": {
"sort-packages": true
}
}