1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "bacon/bacon-qr-code",
- "description": "BaconQrCode is a QR code generator for PHP.",
- "license" : "BSD-2-Clause",
- "homepage": "https://github.com/Bacon/BaconQrCode",
- "require": {
- "php": "^7.1 || ^8.0",
- "ext-iconv": "*",
- "dasprid/enum": "^1.0.3"
- },
- "suggest": {
- "ext-imagick": "to generate QR code images"
- },
- "authors": [
- {
- "name": "Ben Scholzen 'DASPRiD'",
- "email": "mail@dasprids.de",
- "homepage": "https://dasprids.de/",
- "role": "Developer"
- }
- ],
- "autoload": {
- "psr-4": {
- "BaconQrCode\\": "src/"
- }
- },
- "require-dev": {
- "phpunit/phpunit": "^7 | ^8 | ^9",
- "spatie/phpunit-snapshot-assertions": "^4.2.9",
- "squizlabs/php_codesniffer": "^3.4",
- "phly/keep-a-changelog": "^2.1"
- },
- "config": {
- "allow-plugins": {
- "ocramius/package-versions": true
- }
- },
- "archive": {
- "exclude": [
- "/test",
- "/phpunit.xml.dist"
- ]
- }
- }
|