-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 876 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 876 Bytes
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
{
"name": "xruff/socialtags",
"type": "library",
"description": "Nette extension - Facebook and twitter meta tags",
"keywords": ["nette", "facebook", "twitter", "component"],
"license": ["MIT"],
"authors": [
{
"name": "Pavel Lauko"
}
],
"support": {
"issues": "https://github.com/XRuff/SocialTags/issues"
},
"require": {
"nette/application": "~2.3"
},
"require-dev": {
"nette/application": "~2.3",
"nette/tester": "~1.1.0",
"tracy/tracy": "2.3.*",
"vanio/coding-standards": "^0.1@dev"
},
"autoload": {
"psr-4": {
"XRuff\\Components\\SocialTags\\": "src"
}
},
"minimum-stability": "dev",
"scripts": {
"lint": "\"vendor/bin/phpcs\" --standard=ruleset.xml --extensions=php --encoding=utf-8 --ignore=vendor .",
"fix": "\"vendor/bin/phpcbf\" --standard=ruleset.xml --extensions=php --encoding=utf-8 --no-patch --ignore=vendor ."
}
}