Skip to content

Commit 7455f8f

Browse files
author
Omar Usman
committed
Merge pull request #6 from ClickSend/namespace
Namespace
2 parents aed2f5e + 1d7affb commit 7455f8f

27 files changed

Lines changed: 283 additions & 149 deletions

.gitignore

Lines changed: 147 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,151 @@
1-
vendor/
2-
node_modules/
1+
### Windows ###
2+
# Windows image file caches
3+
Thumbs.db
4+
ehthumbs.db
35

4-
# Laravel 4 specific
5-
bootstrap/compiled.php
6-
app/storage/
6+
# Folder config file
7+
Desktop.ini
78

8-
# Laravel 5 & Lumen specific
9-
bootstrap/cache/
10-
storage/
11-
.env.*.php
12-
.env.php
13-
.env
14-
.env.example
9+
# Recycle Bin used on file shares
10+
$RECYCLE.BIN/
1511

12+
# Windows Installer files
13+
*.cab
14+
*.msi
15+
*.msm
16+
*.msp
17+
18+
# Windows shortcuts
19+
*.lnk
20+
21+
22+
### OSX ###
23+
*.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Icon must end with two \r
28+
Icon
29+
30+
31+
# Thumbnails
32+
._*
33+
34+
# Files that might appear in the root of a volume
35+
.DocumentRevisions-V100
36+
.fseventsd
37+
.Spotlight-V100
38+
.TemporaryItems
39+
.Trashes
40+
.VolumeIcon.icns
41+
.com.apple.timemachine.donotpresent
42+
43+
# Directories potentially created on remote AFP share
44+
.AppleDB
45+
.AppleDesktop
46+
Network Trash Folder
47+
Temporary Items
48+
.apdisk
49+
50+
51+
### PhpStorm ###
52+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
53+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
54+
55+
# User-specific stuff:
1656
.idea
17-
.DS_Store
57+
.idea/workspace.xml
58+
.idea/tasks.xml
59+
.idea/dictionaries
60+
.idea/vcs.xml
61+
.idea/jsLibraryMappings.xml
62+
63+
# Sensitive or high-churn files:
64+
.idea/dataSources.ids
65+
.idea/dataSources.xml
66+
.idea/dataSources.local.xml
67+
.idea/sqlDataSources.xml
68+
.idea/dynamic.xml
69+
.idea/uiDesigner.xml
70+
71+
# Gradle:
72+
.idea/gradle.xml
73+
.idea/libraries
74+
75+
# Mongo Explorer plugin:
76+
.idea/mongoSettings.xml
77+
78+
## File-based project format:
79+
*.iws
80+
81+
## Plugin-specific files:
82+
83+
# IntelliJ
84+
/out/
85+
86+
# mpeltonen/sbt-idea plugin
87+
.idea_modules/
88+
89+
# JIRA plugin
90+
atlassian-ide-plugin.xml
91+
92+
# Crashlytics plugin (for Android Studio and IntelliJ)
93+
com_crashlytics_export_strings.xml
94+
crashlytics.properties
95+
crashlytics-build.properties
96+
fabric.properties
97+
98+
### PhpStorm Patch ###
99+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
100+
101+
# *.iml
102+
# modules.xml
103+
104+
105+
### Node ###
106+
# Logs
107+
logs
108+
*.log
109+
npm-debug.log*
110+
111+
# Runtime data
112+
pids
113+
*.pid
114+
*.seed
115+
116+
# Directory for instrumented libs generated by jscoverage/JSCover
117+
lib-cov
118+
119+
# Coverage directory used by tools like istanbul
120+
coverage
121+
122+
# nyc test coverage
123+
.nyc_output
124+
125+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
126+
.grunt
127+
128+
# node-waf configuration
129+
.lock-wscript
130+
131+
# Compiled binary addons (http://nodejs.org/api/addons.html)
132+
build/Release
133+
134+
# Dependency directories
135+
node_modules
136+
jspm_packages
137+
138+
# Optional npm cache directory
139+
.npm
140+
141+
# Optional REPL history
142+
.node_repl_history
143+
144+
145+
### Composer ###
146+
composer.phar
147+
/vendor/
148+
149+
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
150+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
151+
# composer.lock

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "apimatic/clicksendv3api",
2+
"name": "ClickSend/clicksend-php",
33
"type": "library",
4-
"description": "Clicksend v3 API",
5-
"keywords": ["ClickSend v3 API","API","SDK"],
6-
"homepage": "https://apimatic.io",
4+
"description": "A PHP wrapper for ClickSend's API",
5+
"keywords": ["ClickSend","SMS","Voice","Fax","Post","Email","API","SDK"],
6+
"homepage": "https://www.clicksend.com",
77
"license": "MIT",
88
"authors": [
99
{
10-
"name": "Zeeshan @ APIMATIC",
11-
"email": "[email protected]",
12-
"homepage": "https://github.com/apimatic",
13-
"role": "Developer"
10+
"name": "Matthew Larner",
11+
"email": "[email protected]",
12+
"homepage": "https://www.clicksend.com",
13+
"role": "Director"
1414
}
1515
],
1616
"require": {
@@ -23,7 +23,7 @@
2323
},
2424
"autoload": {
2525
"psr-4": {
26-
"ClickSend\\": "src/"
26+
"ClickSendLib\\": "src/"
2727
}
2828
}
2929
}

src/APIException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend;
8+
namespace ClickSendLib;
99

1010
use Exception;
1111

src/APIHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend;
8+
namespace ClickSendLib;
99

1010
use InvalidArgumentException;
1111

src/ClickSendClient.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend;
8+
namespace ClickSendLib;
99

10-
use ClickSend\Controllers;
10+
use ClickSendLib\Controllers;
1111

1212
/**
1313
* ClickSend client class

src/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend;
8+
namespace ClickSendLib;
99

1010
/**
1111
* All configuration including auth info and base URI for the API access

src/Controllers/AccountController.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend\Controllers;
8+
namespace ClickSendLib\Controllers;
99

10-
use ClickSend\APIException;
11-
use ClickSend\APIHelper;
12-
use ClickSend\Configuration;
13-
use ClickSend\Models;
10+
use ClickSendLib\APIException;
11+
use ClickSendLib\APIHelper;
12+
use ClickSendLib\Configuration;
13+
use ClickSendLib\Models;
1414
use Unirest\Request;
1515
use \apimatic\jsonmapper\JsonMapper;
1616

src/Controllers/AccountRechargeController.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend\Controllers;
8+
namespace ClickSendLib\Controllers;
99

10-
use ClickSend\APIException;
11-
use ClickSend\APIHelper;
12-
use ClickSend\Configuration;
13-
use ClickSend\Models;
10+
use ClickSendLib\APIException;
11+
use ClickSendLib\APIHelper;
12+
use ClickSendLib\Configuration;
13+
use ClickSendLib\Models;
1414
use Unirest\Request;
1515
use \apimatic\jsonmapper\JsonMapper;
1616

src/Controllers/ContactController.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend\Controllers;
8+
namespace ClickSendLib\Controllers;
99

10-
use ClickSend\APIException;
11-
use ClickSend\APIHelper;
12-
use ClickSend\Configuration;
13-
use ClickSend\Models;
10+
use ClickSendLib\APIException;
11+
use ClickSendLib\APIHelper;
12+
use ClickSendLib\Configuration;
13+
use ClickSendLib\Models;
1414
use Unirest\Request;
1515
use \apimatic\jsonmapper\JsonMapper;
1616

src/Controllers/ContactListController.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
/*
33
* ClickSend
44
*
5-
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 05/31/2016
5+
* This file was automatically generated for ClickSend by APIMATIC v2.0 ( https://apimatic.io ) on 06/01/2016
66
*/
77

8-
namespace ClickSend\Controllers;
8+
namespace ClickSendLib\Controllers;
99

10-
use ClickSend\APIException;
11-
use ClickSend\APIHelper;
12-
use ClickSend\Configuration;
13-
use ClickSend\Models;
10+
use ClickSendLib\APIException;
11+
use ClickSendLib\APIHelper;
12+
use ClickSendLib\Configuration;
13+
use ClickSendLib\Models;
1414
use Unirest\Request;
1515
use \apimatic\jsonmapper\JsonMapper;
1616

0 commit comments

Comments
 (0)