Initialised composer, started prototyping.

This commit is contained in:
conky
2022-10-12 23:37:30 +03:00
commit 4bfc4ccdaf
5 changed files with 113 additions and 0 deletions

27
composer.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "toloka/php-api",
"description": "PHP library to integrate with Hurtom Toloka using web scrapping.",
"type": "library",
"homepage": "http://git.devbones.com/Toloka/php-api",
"require": {
"php": ">=7.4",
"psr/simple-cache": "^3.0",
"psr/log": "^3.0",
"psr/http-client": "^1.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Toloka\\PhpApi\\": "src/"
}
},
"authors": [
{
"name": "conky",
"email": "bogdan@devbones.com"
}
],
"require-dev": {
"guzzlehttp/guzzle": "^7.5"
}
}