Skip to content

Commit 0f181f7

Browse files
author
craig.thompson
committed
Initial commit
0 parents  commit 0f181f7

File tree

203 files changed

+11924
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+11924
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Communicator client
2+
3+
## Requirements
4+
5+
* [PHP version 5.4+](https://secure.php.net)
6+
7+
## License
8+
9+
Copyright © 2015 [Rippleffect Studio Ltd](http://www.rippleffect.com)
10+
Rights reserved.

build.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<project name="communicatorcorp/client-php" default="build">
3+
<property name="basedir" value="." />
4+
5+
<target name="build" depends="phpcs, phpunit" />
6+
7+
<target name="phpunit" description="Run unit tests">
8+
<exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
9+
<arg value="--coverage-html" />
10+
<arg path="${basedir}/build/coverage" />
11+
</exec>
12+
</target>
13+
14+
<target name="phpcs" description="Run coding standards checks">
15+
<exec executable="${basedir}/vendor/bin/phpcs">
16+
<arg value="-p" />
17+
<arg value="--extensions=php" />
18+
<arg value="--standard=PSR2" />
19+
<arg path="${basedir}/src" />
20+
<arg path="${basedir}/test" />
21+
</exec>
22+
</target>
23+
</project>

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "communicator/webservices-php",
3+
"description": "Communicator Web Services client for PHP",
4+
"license": "Proprietary",
5+
"version": "1.0.0",
6+
"type": "Library",
7+
"authors": [
8+
{
9+
"name": "Daniel Morris",
10+
"email": "daniel@rippleffect.com",
11+
"role": "Programmer"
12+
}
13+
],
14+
"require": {
15+
"myclabs/php-enum": "~1.4",
16+
"ext-soap": "*",
17+
"php": ">=5.4"
18+
},
19+
"require-dev": {
20+
"phpunit/phpunit": "~4.8",
21+
"squizlabs/php_codesniffer": "~2.4"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"CommunicatorCorp\\Client\\": "src/"
26+
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"CommunicatorCorp\\Client\\Test\\": "test/"
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)