Skip to content

Commit d861859

Browse files
committed
initial implementation
1 parent c8760b3 commit d861859

26 files changed

+1735
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
composer.phar
22
/vendor/
3-
3+
*~
44
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
55
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
66
# composer.lock

composer.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "onecrm/notarius-client",
3+
"type": "library",
4+
"autoload": {
5+
"psr-4": {
6+
"OneCRM\\NotariusClient\\": "src/"
7+
}
8+
},
9+
"authors": [
10+
{
11+
"name": "Andrey Demenev",
12+
"email": "[email protected]"
13+
}
14+
],
15+
"require": {
16+
"guzzlehttp/guzzle": "~6.0|~7.0"
17+
}
18+
}

0 commit comments

Comments
 (0)