forked from tommy-muehle/silex-sitemap-service-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.3 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": "tm/silex-sitemap-service-provider",
"description": "Simple service provider to generate a xml-sitemap.",
"keywords": [
"silex",
"sitemap",
"xml"
],
"authors": [
{
"name": "Tommy Muehle",
"email": "[email protected]",
"homepage": "https://tommy-muehle.de"
}
],
"license": "MIT",
"require": {
"php": ">=5.6.0",
"silex/silex": "^1.0|^2.0"
},
"require-dev": {
"beberlei/assert": "^2.0",
"tm/tooly-composer-script": "^1.0"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/tommy-muehle/silex-sitemap-service-provider/issues",
"docs": "https://github.com/tommy-muehle/silex-sitemap-service-provider/blob/master/README.md",
"source": "https://github.com/tommy-muehle/silex-sitemap-service-provider/tree/master"
},
"type": "library",
"autoload": {
"psr-4": {
"TM\\": "src/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools"
},
"extra": {
"tools": {
"behat": {
"url": "https://github.com/Behat/Behat/releases/download/v3.2.1/behat.phar"
}
}
}
}