forked from ThePixelDeveloper/Sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 826 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
34
35
{
"name": "thepixeldeveloper/sitemap",
"type": "library",
"description": "PHP XML sitemap generation",
"keywords": ["php", "sitemap", "xml", "sitemap-php", "sitemap-builder", "sitemap-generator", "sitemap-xml", "xml-sitemap"],
"license": "MIT",
"authors": [
{
"name": "Mathew Davies",
"role": "Developer"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpstan/phpstan": "^0",
"phpstan/phpstan-phpunit": "^0"
},
"autoload": {
"psr-4": {
"Thepixeldeveloper\\Sitemap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Thepixeldeveloper\\Sitemap\\": "tests/"
}
},
"scripts": {
"test": "phpdbg -qrr vendor/bin/phpunit --coverage-text --colors=never --coverage-html ./coverage",
"lint": "phpstan analyse src tests --level=7 -c phpstan.neon"
}
}