Skip to content

Commit b64d078

Browse files
committed
format composer.json tabs -> spaces, add ext-mbstring requirement, dep updates
1 parent 07c7fcb commit b64d078

File tree

3 files changed

+107
-89
lines changed

3 files changed

+107
-89
lines changed

Diff for: composer.json

+31-24
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,33 @@
11
{
2-
"name": "mike42/escpos-php",
3-
"type": "library",
4-
"description": "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers",
5-
"homepage": "https://github.com/mike42/escpos-php",
6-
"keywords": ["receipt", "print", "escpos", "ESC-POS", "driver"],
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Michael Billington",
11-
"email": "[email protected]"
12-
}
13-
],
14-
"require": {
15-
"php": ">=5.3.0"
16-
},
17-
"require-dev": {
18-
"phpunit/phpunit": "4.5.*",
19-
"squizlabs/php_codesniffer": "2.*"
20-
},
21-
"autoload": {
22-
"psr-4": {
23-
"Mike42\\": "src/Mike42"
24-
}
25-
}
2+
"name": "mike42/escpos-php",
3+
"type": "library",
4+
"description": "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers",
5+
"homepage": "https://github.com/mike42/escpos-php",
6+
"keywords": ["receipt", "print", "escpos", "ESC-POS", "driver"],
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Michael Billington",
11+
"email": "[email protected]"
12+
}
13+
],
14+
"config": {
15+
"platform": {
16+
"php": "5.3.9"
17+
}
18+
},
19+
"require": {
20+
"php": ">=5.3.9",
21+
"ext-mbstring": "*"
22+
},
23+
"require-dev": {
24+
"phpunit/phpunit": "4.8.*",
25+
"squizlabs/php_codesniffer": "2.*"
26+
},
27+
"autoload": {
28+
"psr-4": {
29+
"Mike42\\": "src/Mike42"
30+
}
31+
}
2632
}
33+

0 commit comments

Comments
 (0)