Skip to content

Commit 5e5a53c

Browse files
committed
initial
1 parent 8f63bda commit 5e5a53c

14 files changed

Lines changed: 2040 additions & 0 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+

composer.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "devgroup/php-dreamkas",
3+
"description": "Фискализация чека для Дримкас-Ф на php",
4+
"type": "library",
5+
"require": {
6+
"guzzlehttp/guzzle": "~6.3.0"
7+
},
8+
"require-dev": {
9+
"phpunit/phpunit": "~5.7.25"
10+
},
11+
"license": "MIT",
12+
"autoload": {
13+
"psr-4": {
14+
"DevGroup\\Dreamkas\\": "src/"
15+
}
16+
},
17+
"autoload-dev": {
18+
"psr-4": {
19+
"DevGroup\\Dreamkas\\tests\\": "tests/"
20+
}
21+
},
22+
"authors": [
23+
{
24+
"name": "Alexander Kozhevnikov",
25+
"email": "sales.2@devgroup.ru"
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)