-
Notifications
You must be signed in to change notification settings - Fork 862
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #803 from mike42/development
Changes for release v3.0
- Loading branch information
Showing
93 changed files
with
2,250 additions
and
1,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,44 @@ | ||
{ | ||
"name": "mike42/escpos-php", | ||
"type": "library", | ||
"description": "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers", | ||
"homepage": "https://github.com/mike42/escpos-php", | ||
"keywords": ["receipt", "print", "escpos", "ESC-POS", "driver"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Michael Billington", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "5.4.0" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=5.4.0", | ||
"ext-mbstring": "*" | ||
}, | ||
"suggest": { | ||
"guzzlehttp/guzzle": "Allows the use of the ApiConnector to send print jobs over HTTP.", | ||
"ext-imagick": "Will be used for image printing if present. Required for PDF printing or use of custom fonts.", | ||
"ext-gd": "Used for image printing if present." | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.8", | ||
"squizlabs/php_codesniffer": "^3.2", | ||
"guzzlehttp/guzzle": "^5.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mike42\\": "src/Mike42" | ||
} | ||
} | ||
"name" : "mike42/escpos-php", | ||
"type" : "library", | ||
"description" : "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers", | ||
"homepage" : "https://github.com/mike42/escpos-php", | ||
"keywords" : [ | ||
"barcode", | ||
"epson", | ||
"receipt-printer", | ||
"printer", | ||
"escpos" | ||
], | ||
"license" : "MIT", | ||
"authors" : [{ | ||
"name" : "Michael Billington", | ||
"email" : "[email protected]" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "7.0.0" | ||
} | ||
}, | ||
"require" : { | ||
"php" : ">=7.0.0", | ||
"ext-json": "*", | ||
"ext-intl": "*", | ||
"ext-zlib": "*", | ||
"mike42/gfx-php" : "^0.6" | ||
}, | ||
"suggest" : { | ||
"ext-imagick" : "Will be used for image printing if present. Required for PDF printing or use of custom fonts.", | ||
"ext-gd" : "Used for image printing if present." | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "^6.5", | ||
"squizlabs/php_codesniffer" : "^3.3" | ||
}, | ||
"autoload" : { | ||
"psr-4" : { | ||
"Mike42\\" : "src/Mike42" | ||
} | ||
} | ||
} |
Oops, something went wrong.