-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.09 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "darkterminal/escpos-printer-server",
"description": "The fck'in simple escpos printer server",
"type": "library",
"version": "2.0.4",
"require": {
"workerman/workerman": "^5.1",
"mike42/escpos-php": "^4.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Darkterminal\\EscposPrinterServer\\": "src/"
},
"files": [
"src/functions.php"
]
},
"scripts": {
"create:phar": "sh ./build-phar.sh",
"create:bundle": "sh ./make-bundle.sh",
"release:patch": "sh ./release.sh patch",
"release:minor": "sh ./release.sh minor",
"release:major": "sh ./release.sh major"
},
"bin": "./eps",
"authors": [
{
"name": "Imam Ali Mustofa",
"email": "darkterminal@duck.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/darkterminal"
},
{
"type": "saweria",
"url": "https://saweria.co/darkterminal"
}
],
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}