-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.2 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
{
"name": "camelot/sitemap",
"description": "Provides a way to create/generate a sitemap using Propel, Doctrine, etc.",
"keywords": ["sitemap", "generator", "seo"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kévin Gomez",
"email": "[email protected]",
"homepage": "http://www.kevingomez.fr/"
},
{
"name": "Gawain Lynch",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"symfony/property-access": "^4.3 || ^5.0",
"nikic/iter": "^1.3"
},
"require-dev": {
"camelot/coding-style": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"kphoen/rusty": "dev-master",
"phpunit/phpunit": "^8.4",
"symfony/phpunit-bridge": "^4.3 || ^5.0",
"symfony/routing": "^4.3 || ^5.0"
},
"autoload": {
"psr-4": { "Camelot\\Sitemap\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Camelot\\Sitemap\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}