-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "cdaguerre/robots-bundle",
"type": "symfony-bundle",
"description": "Add contextual robots meta headers",
"homepage": "https://github.com/cdaguerre/robots-bundle",
"keywords": ["robot", "crawler", "meta", "bundle"],
"license": "MIT",
"authors": [
{ "name": "Christian Daguerre", "email": "[email protected]"}
],
"require": {
"php": ">=5.6.0",
"sylius/resource-bundle": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Dag\\Component\\Robots\\": "Robots/",
"Dag\\Bundle\\RobotsBundle\\": "RobotsBundle/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}