Skip to content

Commit

Permalink
Moved repository and renamed package.
Browse files Browse the repository at this point in the history
  • Loading branch information
prwater committed Nov 14, 2019
1 parent f62bded commit 0d1d1e0
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 16 deletions.
37 changes: 33 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# ABC-Framework: CGI Interface
# PhpPlaisio: CGI

[![Gitter](https://badges.gitter.im/SetBased/php-abc.svg)](https://gitter.im/SetBased/php-abc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![License](https://poser.pugx.org/setbased/abc-cgi/license)](https://packagist.org/packages/setbased/abc-cgi)
[![Latest Stable Version](https://poser.pugx.org/setbased/abc-cgi/v/stable)](https://packagist.org/packages/setbased/abc-cgi)
<table>
<thead>
<tr>
<th>Social</th>
<th>Legal</th>
<th>Release</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://gitter.im/PhpPlaisio/PhpPlaisio"><img src="https://badges.gitter.im/PhpPlaisio/PhpPlaisio.svg" alt="Gitter"/></a>
</td>
<td>
<a href="https://packagist.org/packages/plaisio/cgi"><img src="https://poser.pugx.org/plaisio/cgi/license" alt="License"/></a>
</td>
<td>
<a href="https://packagist.org/packages/plaisio/cgi"><img src="https://poser.pugx.org/plaisio/cgi/v/stable" alt="Latest Stable Version"/></a>
</td>
</tr>
</tbody>
</table>

Interface for getting CGI variables..

# Design

This is an [abstract, responsible and stable package](https://matthiasnoback.nl/book/principles-of-package-design/). Hence, if you see little or non-recent activity in this repository it doesn't mean this projects is dead, but it means we have achieved one of the essentials goals of this package.

# License

This project is licensed under the MIT license.
8 changes: 1 addition & 7 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
<project name="ABC-Framework" default="build" basedir=".">
<project name="PhpPlaisio" default="build" basedir=".">
<!-- Run composer update and executes various other updates -->
<target name="update">
<exec command="composer update" checkreturn="true" passthru="true"/>
</target>

<!-- Runs ApiGen -->
<target name="apigen">
<exec command="apigen generate --todo --tree --source src --destination doc" passthru="true"
checkreturn="true"/>
</target>

<target name="build">
<echo message=""/>
</target>
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "setbased/abc-cgi",
"description": "ABC-Framework: CGI",
"name": "plaisio/cgi",
"description": "PhpPlaisio: CGI",
"keywords": [
"ABC-Framework",
"PhpPlaisio",
"CGI"
],
"license": "MIT",
Expand All @@ -14,7 +14,7 @@
},
"autoload": {
"psr-4": {
"SetBased\\Abc\\Cgi\\": "src/"
"Plaisio\\Cgi\\": "src/"
}
},
"config": {
Expand Down
2 changes: 1 addition & 1 deletion src/Cgi.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace SetBased\Abc\Cgi;
namespace Plaisio\Cgi;

/**
* Interface for defining classes for obfuscating and un-obfuscating database IDs.
Expand Down

0 comments on commit 0d1d1e0

Please sign in to comment.