Skip to content

Commit

Permalink
Added composer.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
tekord committed Jun 6, 2021
1 parent 24b581d commit ccd90f6
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "tekord/robots-txt-provider",
"description": "Provides various framework-agnostic ways to generate the contents of the robots.txt file",
"keywords": [
"robots",
"robots.txt",
"seo",
"indexing",
"search"
],
"homepage": "https://github.com/tekord/robots-txt-provider",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Cyrill Tekord",
"email": "cyrill@tekord.space",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Tekord\\RobotsTxtProvider\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tekord\\RobotsTxtProvider\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}

0 comments on commit ccd90f6

Please sign in to comment.