From f14f7924b0b89474da2f967d5bbde22709075ef6 Mon Sep 17 00:00:00 2001 From: lukehebb Date: Sat, 25 Jan 2020 16:49:02 +0000 Subject: [PATCH 1/2] update readme, contributing and composer.json --- .idea/.gitignore | 2 ++ .idea/docker-php.iml | 12 ++++++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/php.xml | 4 ++++ .idea/vcs.xml | 6 ++++++ CONTRIBUTING.md | 2 ++ README.md | 27 +++++++++++---------------- composer.json | 2 +- 9 files changed, 52 insertions(+), 17 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/docker-php.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..e7e9d11d --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml diff --git a/.idea/docker-php.iml b/.idea/docker-php.iml new file mode 100644 index 00000000..ea4da34b --- /dev/null +++ b/.idea/docker-php.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..28a804d8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..b0a43aa0 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 00000000..10b171f2 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6be589b9..66234541 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,6 +23,8 @@ easily understood/implement it. ## Sending a Pull Request +**NOTE: We are currently not accepting new pull requests. Thank you for considering it, we may change this in the future.** + If you're here, you are going to fix a bug or implement a feature and you're the best! To do it, first fork the repository, clone it and create a new branch with the following commands: ``` bash diff --git a/README.md b/README.md index 27464be6..4054d94c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ -# No longer maintained +# This is forked -I'm backing off maintaining this library due to a lack of motivation, time and usage of docker, contact me on twitter https://twitter.com/joelwurtz if you wish to take over this repository (or just do a fork). +This was forked from [docker-php/docker-php](https://github.com/docker-php/docker-php) for use within quickfire. + +Composer commands won't yet work as this isn't yet published on packagist. Docker PHP ========== @@ -10,22 +12,13 @@ This library aim to reach 100% API support of the Docker Engine. The test suite currently passes against Docker Remote API v1.25 to v1.36. -[![Documentation Status](https://readthedocs.org/projects/docker-php/badge/?version=latest)](http://docker-php.readthedocs.org/en/latest/) -[![Latest Version](https://img.shields.io/github/release/docker-php/docker-php.svg?style=flat-square)](https://github.com/docker-php/docker-php/releases) -[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE) -[![Build Status](https://img.shields.io/travis/docker-php/docker-php.svg?branch=master&style=flat-square)](https://travis-ci.org/docker-php/docker-php) -[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/docker-php/docker-php.svg?style=flat-square)](https://scrutinizer-ci.com/g/docker-php/docker-php) -[![Quality Score](https://img.shields.io/scrutinizer/g/docker-php/docker-php.svg?style=flat-square)](https://scrutinizer-ci.com/g/docker-php/docker-php) -[![Total Downloads](https://img.shields.io/packagist/dt/docker-php/docker-php.svg?style=flat-square)](https://packagist.org/packages/docker-php/docker-php) -[![#docker-php on Slack](http://slack.httplug.io/badge.svg)](http://slack.httplug.io) - Installation ------------ The recommended way to install Docker PHP is of course to use [Composer](http://getcomposer.org/): ```bash -composer require docker-php/docker-php +composer require quickfire/docker-php ``` Docker API Version @@ -35,13 +28,13 @@ By default it will use the last version of docker api available, if you want to requirement to composer: ```bash -composer require "docker-php/docker-php-api:4.1.25.*" +composer require "quickfire/docker-php-api:4.1.25.*" ``` Usage ----- -See [the documentation](http://docker-php.readthedocs.org/en/latest/). +See [the documentation](http://docker-php.readthedocs.org/en/latest/) for now. New docs coming soon(tm) Unit Tests ---------- @@ -61,12 +54,14 @@ $ composer test Contributing ------------ -Please see [CONTRIBUTING](CONTRIBUTING.md) for details. +Currently not accepting new pull requests. Credits ------- -This README heavily inspired by [willdurand/Negotiation](https://github.com/willdurand/Negotiation) by @willdurand. This guy is pretty awesome. +Forked from [docker-php/docker-php](https://github.com/docker-php/docker-php) by quickfire. + +This README was originally heavily inspired by [willdurand/Negotiation](https://github.com/willdurand/Negotiation) by @willdurand. This guy is pretty awesome. License ------- diff --git a/composer.json b/composer.json index 64019814..b95a6191 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "docker-php/docker-php", + "name": "quickfire/docker-php", "license": "MIT", "type": "library", "description": "A Docker PHP client", From 0242104893dcd4e0117e267e54039e2efeec65ca Mon Sep 17 00:00:00 2001 From: lukehebb Date: Sat, 25 Jan 2020 16:51:10 +0000 Subject: [PATCH 2/2] ignore .idea --- .gitignore | 1 + .idea/.gitignore | 2 -- .idea/docker-php.iml | 12 ------------ .idea/misc.xml | 6 ------ .idea/modules.xml | 8 -------- .idea/php.xml | 4 ---- .idea/vcs.xml | 6 ------ 7 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/docker-php.iml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/php.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index 228f5459..83cce740 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ bin/ composer.lock .vagrant /.php_cs.cache +.idea/ \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index e7e9d11d..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Default ignored files -/workspace.xml diff --git a/.idea/docker-php.iml b/.idea/docker-php.iml deleted file mode 100644 index ea4da34b..00000000 --- a/.idea/docker-php.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 28a804d8..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index b0a43aa0..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml deleted file mode 100644 index 10b171f2..00000000 --- a/.idea/php.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file