Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12870970
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/.arcconfig b/.arcconfig
new file mode 100644
index 0000000..ac31284
--- /dev/null
+++ b/.arcconfig
@@ -0,0 +1,5 @@
+{
+ "repository.callsign": "KDOCKERHUB",
+ "phabricator.uri": "https://devcentral.nasqueron.org",
+ "unit.engine": "PhpunitTestEngine"
+}
diff --git a/.arclint b/.arclint
new file mode 100644
index 0000000..0eda589
--- /dev/null
+++ b/.arclint
@@ -0,0 +1,41 @@
+{
+ "exclude": [
+ "(^vendor/)"
+ ],
+ "linters": {
+ "chmod": {
+ "type": "chmod"
+ },
+ "filename": {
+ "type": "filename"
+ },
+ "json": {
+ "type": "json",
+ "include": [
+ "(^\\.arcconfig$)",
+ "(^\\.arclint$)",
+ "(\\.json$)"
+ ]
+ },
+ "merge-conflict": {
+ "type": "merge-conflict"
+ },
+ "php": {
+ "type": "php",
+ "include": "(\\.php$)"
+ },
+ "phpcs": {
+ "type": "phpcs",
+ "bin": "vendor/bin/phpcs",
+ "phpcs.standard": "PSR1",
+ "include": "(^app/.*\\.php$)"
+ },
+ "spelling": {
+ "type": "spelling"
+ },
+ "xml": {
+ "type": "xml",
+ "include": "(\\.xml$)"
+ }
+ }
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3a9875b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/vendor/
+composer.lock
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..85d3f46
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# keruald/dockerhub
+
+Docker Hub API client
+
+Allow remotely to trigger images builds on Docker Hub.
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..6bf6aa9
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,37 @@
+{
+ "name": "keruald/dockerhub",
+ "description": "Docker Hub API client",
+ "license": "BSD-2-Clause",
+ "authors": [
+ {
+ "name": "Sébastien Santoro",
+ "email": "dereckson@espace-win.org"
+ }
+ ],
+ "keywords": [
+ "keruald",
+ "Docker",
+ "Docker Hub"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.net/wolfplex",
+ "issues": "https://devcentral.nasqueron.org"
+ },
+ "require": {
+ "php": ">=5.6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "5.0.*",
+ "psy/psysh": "dev-master",
+ "squizlabs/php_codesniffer": "*"
+ },
+ "autoload": {
+ "psr-4": {
+ "Keruald\\DockerHub\\": "src/",
+ "Keruald\\DockerHub\\Tests\\": "tests/"
+ }
+ },
+ "scripts": {
+ "test": "phpunit tests"
+ }
+}
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 0000000..97a54ba
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<phpunit bootstrap="./vendor/autoload.php">
+ <testsuites>
+ <testsuite name="Library test suite">
+ <directory>./tests/</directory>
+ </testsuite>
+ </testsuites>
+</phpunit>
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Mon, Nov 17, 16:03 (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3174077
Default Alt Text
(2 KB)
Attached To
Mode
rKDOCKERHUB Keruald Docker Hub
Attached
Detach File
Event Timeline
Log In to Comment