Skip to content

Commit

Permalink
Normalize composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmai committed Jun 3, 2019
1 parent 43d0a16 commit 7ab84bc
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,44 @@
{
"name": "sanmai/pipeline",
"description": "General-purpose collections pipeline for PHP",
"type": "library",
"description": "General-purpose collections pipeline for PHP",
"license": "Apache-2.0",
"authors": [
{
"name": "Alexey Kopytko",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^5",
"satooshi/php-coveralls": "^1.0",
"friendsofphp/php-cs-fixer": "^2.4"
},
"license": "Apache-2.0",
"autoload": {
"files": ["src/functions.php"],
"psr-4": {"Pipeline\\": "src/Pipeline/"}
},
"autoload-dev": {
"psr-4": {"Pipeline\\": "tests/Pipeline/"}
},
"require": {
"php": "^5.6"
},
"extra": {
"branch-alias": {
"dev-master": "v2.x-dev"
}
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.4",
"php-coveralls/php-coveralls": ">=1.0",
"phpunit/phpunit": "^5"
},
"config": {
"platform": {
"php": "5.6"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"Pipeline\\": "src/Pipeline/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Pipeline\\": "tests/Pipeline/"
}
}
}

0 comments on commit 7ab84bc

Please sign in to comment.