Skip to content

Commit 588736a

Browse files
committed
Rename stage1/docker-php to docker-php/docker-php
1 parent 2bd8807 commit 588736a

7 files changed

+13
-12
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $ git rebase -i HEAD~3
6262
If your branch conflicts with the master branch, you will need to rebase and repush it with the following commands:
6363

6464
``` bash
65-
$ git remote add upstream git@github.com:stage1/docker-php.git
65+
$ git remote add upstream git@github.com:docker-php/docker-php.git
6666
$ git pull --rebase upstream master
6767
$ git push -f origin feature-or-bug-fix-description
6868
```

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Copyright (c) 2013 Geoffrey Bachelet <geoffrey@stage1.io>
1+
Copyright (c) 2013 Geoffrey Bachelet <geoffrey.bachelet@gmail.com> and
2+
contributors
23

34
Permission is hereby granted, free of charge, to any person obtaining a copy
45
of this software and associated documentation files (the "Software"), to deal

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ This library aim to reach 100% API support of the Docker Engine.
77
The test suite currently passes against the [Docker Remote API v1.21](http://docs.docker.com/reference/api/docker_remote_api_v1.21/).
88

99
[![Documentation Status](https://readthedocs.org/projects/docker-php/badge/?version=latest)](http://docker-php.readthedocs.org/en/latest/)
10-
[![Latest Version](https://img.shields.io/github/release/stage1/docker-php.svg?style=flat-square)](https://github.com/stage1/docker-php/releases)
10+
[![Latest Version](https://img.shields.io/github/release/docker-php/docker-php.svg?style=flat-square)](https://github.com/docker-php/docker-php/releases)
1111
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
12-
[![Build Status](https://img.shields.io/travis/stage1/docker-php.svg?branch=master&style=flat-square)](https://travis-ci.org/stage1/docker-php)
13-
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/stage1/docker-php.svg?style=flat-square)](https://scrutinizer-ci.com/g/stage1/docker-php)
14-
[![Quality Score](https://img.shields.io/scrutinizer/g/stage1/docker-php.svg?style=flat-square)](https://scrutinizer-ci.com/g/stage1/docker-php)
15-
[![Total Downloads](https://img.shields.io/packagist/dt/stage1/docker-php.svg?style=flat-square)](https://packagist.org/packages/stage1/docker-php)
12+
[![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)
13+
[![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)
14+
[![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)
15+
[![Total Downloads](https://img.shields.io/packagist/dt/docker-php/docker-php.svg?style=flat-square)](https://packagist.org/packages/docker-php/docker-php)
1616

1717

1818

@@ -22,7 +22,7 @@ Installation
2222
The recommended way to install Docker PHP is of course to use [Composer](http://getcomposer.org/):
2323

2424
```bash
25-
composer require stage1/docker-php
25+
composer require docker-php/docker-php
2626
```
2727

2828
Usage

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "stage1/docker-php",
2+
"name": "docker-php/docker-php",
33
"license": "MIT",
44
"type": "library",
55
"description": "A Docker PHP client",

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker-PHP
22

3-
This is the documentation for [docker-php](https://github.com/stage1/docker-php) library.
3+
This is the documentation for [docker-php](https://github.com/docker-php/docker-php) library.
44

55
This library aim to reach 100% API support of the Docker Engine, it's built
66
on the [Docker Remote API v1.21](http://docs.docker.com/reference/api/docker_remote_api_v1.21/).

docs/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
The recommended way to install Docker PHP is of course to use [Composer](http://getcomposer.org/):
44

5-
Run `composer require stage1/docker-php` to add the dependency
5+
Run `composer require docker-php/docker-php` to add the dependency

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
site_name: Docker PHP
22
site_url: http://docker-php.readthedocs.org/
33
site_description: A Docker client in PHP
4-
repo_url: https://github.com/stage1/docker-php
4+
repo_url: https://github.com/docker-php/docker-php
55

66
pages:
77
- Home: index.md

0 commit comments

Comments
 (0)