Added package skeleton
Added modified version of thephpleague/skeleton as skeleton of package.
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"name": "yusufkandemir/microdata-parser",
|
||||
"type": "library",
|
||||
"description": "Parse microdata from document with ease. PHP Implementation of W3C Microdata Specification.",
|
||||
"keywords": [
|
||||
"yusufkandemir",
|
||||
"microdata-parser",
|
||||
"Microdata",
|
||||
"HTML Microdata",
|
||||
"PHP Microdata Parser"
|
||||
],
|
||||
"homepage": "https://github.com/yusufkandemir/microdata-parser",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Yusuf Kandemir",
|
||||
"email": "yusuf.kandemir@outlook.com.tr",
|
||||
"homepage": "https://github.com/yusufkandemir",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php" : "~7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit" : ">=5.4.3",
|
||||
"squizlabs/php_codesniffer": "^3.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"YusufKandemir\\MicrodataParser\\": "src"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"YusufKandemir\\MicrodataParser\\Tests\\": "tests"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "phpunit",
|
||||
"check-style": "phpcs src tests",
|
||||
"fix-style": "phpcbf src tests"
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0-dev"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user