Skip to content

Commit

Permalink
[BC] Rework to remove a lot of unused features and replace oAuth with…
Browse files Browse the repository at this point in the history
… API tokens
  • Loading branch information
kieljohn committed Dec 21, 2020
1 parent c668a3a commit 19981eb
Show file tree
Hide file tree
Showing 9 changed files with 162 additions and 861 deletions.
57 changes: 28 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
{
"name": "vivait/docbuild-php",
"license": "MIT",
"description": "PHP client for doc.build",
"authors": [
{
"name": "Viva IT",
"email": "helpdesk@vivait.co.uk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"symfony/options-resolver": "^2.8|^3.4|^4.4|^5.0",
"doctrine/cache": "~1.4",
"psr/http-message": "^1.0"
},
"require-dev": {
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^7.4"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Vivait\\DocBuild\\": "src/",
"Tests\\Vivait\\DocBuild\\": "tests/"
}
"name": "vivait/docbuild-php",
"license": "MIT",
"description": "PHP client for doc.build",
"authors": [
{
"name": "Viva IT",
"email": "helpdesk@vivait.co.uk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"psr/http-message": "^1.0",
"ext-json": "*"
},
"require-dev": {
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^7.4"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Vivait\\DocBuild\\": "src/",
"Tests\\Vivait\\DocBuild\\": "tests/"
}
}
}
Loading

0 comments on commit 19981eb

Please sign in to comment.