Skip to content
This repository has been archived by the owner on Nov 8, 2020. It is now read-only.

Commit

Permalink
Standartized composer
Browse files Browse the repository at this point in the history
  • Loading branch information
klapuch committed Nov 13, 2016
1 parent 48ffe00 commit fcf37b5
Showing 1 changed file with 27 additions and 21 deletions.
48 changes: 27 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
{
"name": "klapuch/http",
"description": "http, request, response",
"type": "library",
"require-dev": {
"nette/tester": "^1.7"
},
"authors": [
{
"name": "Dominik Klapuch",
"email": "klapuchdominik@gmail.com"
}
],
"require": {
"ext-curl": "*",
"klapuch/uri": "@dev"
},
"autoload": {
"psr-4": {
"Klapuch\\Http\\": "Core/"
}
}
"name": "klapuch/http",
"description": "http, request, response",
"type": "library",
"homepage": "https://github.com/klapuch/Http",
"authors": [
{
"name": "Dominik Klapuch",
"email": "klapuchdominik@gmail.com",
"homepage": "https://www.github.com/klapuch",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"ext-curl": "*",
"klapuch/uri": "^1.0.0"
},
"require-dev": {
"nette/tester": "^1.7"
},
"autoload": {
"psr-4": {
"Klapuch\\Http\\": [
"Core/"
]
}
}
}

0 comments on commit fcf37b5

Please sign in to comment.