Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
first (big) commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gulien committed Apr 18, 2018
0 parents commit 38572d8
Show file tree
Hide file tree
Showing 17 changed files with 3,823 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor
tests/store
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sudo: required

language: generic

services:
- docker

before_install:
- wget -qO- https://github.com/gulien/orbit/releases/download/v3.0.1/orbit_Linux_x86_64.tar.gz | tar xvz -C .
- sudo mv ./orbit /usr/local/bin && chmod +x /usr/local/bin/orbit

script:
- orbit run up ci
62 changes: 62 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"name": "thecodingmachine/gotenberg-php-client",
"description": "A client to send files to a Gotenberg API",
"keywords" : [
"Gotenberg",
"API",
"client",
"PDF",
"Office",
"Markdown",
"HTML",
"Word",
"PowerPoint"
],
"homepage" : "https://github.com/thecodingmachine/gotenberg-php-client",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "Julien Neuhart",
"email" : "j.neuhart@thecodingmachine.com",
"homepage" : "https://github.com/gulien"
}
],
"require" : {
"php" : ">=7.1",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0",
"php-http/discovery": "^1.0",
"guzzlehttp/psr7": "^1.4.2"
},
"require-dev" : {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.9.2",
"thecodingmachine/phpstan-strict-rules": "^0.9.0",
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"php-http/guzzle6-adapter": "^1.1"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\Gotenberg\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"TheCodingMachine\\Gotenberg\\" : "tests/"
}
},
"scripts": {
"cs-fix": "phpcbf",
"cs-check": "phpcs",
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
"phpunit": "phpunit --configuration phpunit.xml.dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}
Loading

0 comments on commit 38572d8

Please sign in to comment.