-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.33 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
{
"name": "niklasbuechner/HTMLParser",
"description": "A HTMLParser implemented in PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niklas Buechner",
"homepage": "https://www.github.com/niklasbuechner"
}
],
"minimum-stability": "stable",
"repositories": [
{
"type": "vcs",
"url": "git@github.com:VIISON/composer-git-hooks-installer-plugin.git"
},
{
"type": "vcs",
"url": "git@github.com:VIISON/style-guide.git"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "^4",
"squizlabs/php_codesniffer": "*",
"viison/style-guide": "^2"
},
"autoload": {
"psr-4": {
"HtmlParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HtmlParser\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs -s -n .",
"phpcs:fix": "vendor/bin/phpcbf -s -n .",
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php tests",
"refresh": "composer dump-autoload"
},
"extra": {
"required-viison-git-hooks": {
"viison/style-guide": [
"shopware-plugin"
]
}
}
}