-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ZMS-1901: referenced local libraries in ticketprinter
- Loading branch information
1 parent
18f7325
commit c60d337
Showing
3 changed files
with
767 additions
and
343 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,64 @@ | ||
{ | ||
"name": "bo/zmsticketprinter", | ||
"description": "Frontend for ticketprinter", | ||
"license": "EUPL-1.2", | ||
"authors": [ | ||
{ | ||
"name": "Torsten Kunst", | ||
"email": "[email protected]" | ||
"name": "bo/zmsticketprinter", | ||
"description": "Frontend for ticketprinter", | ||
"license": "EUPL-1.2", | ||
"authors": [ | ||
{ | ||
"name": "Torsten Kunst", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Philipp G\u00e4bler", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"scripts": { | ||
"command": "bin/configure" | ||
}, | ||
{ | ||
"name": "Philipp Gäbler", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"scripts": { | ||
"command": "bin/configure" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "7.3" | ||
}, | ||
"allow-plugins": { | ||
"php-http/discovery": true | ||
} | ||
}, | ||
"require-dev": { | ||
"phpmd/phpmd": "@stable", | ||
"squizlabs/php_codesniffer": "*", | ||
"phpunit/phpunit": "^9.5.4", | ||
"helmich/phpunit-psr7-assert": "^4.3.0", | ||
"phpspec/prophecy-phpunit": "^2.0.0" | ||
}, | ||
"require": { | ||
"eappointment/mellon": "^2.6.0", | ||
"eappointment/zmsentities": "2.26.02", | ||
"eappointment/zmsslim": "2.26.02", | ||
"eappointment/zmsclient": "2.26.02", | ||
"ext-json": ">=1.0", | ||
"monolog/monolog": "1.*", | ||
"roave/security-advisories": "dev-master", | ||
"twig/twig": "3.*", | ||
"twig/intl-extra": "^3.4" | ||
}, | ||
"bin": [], | ||
"autoload": { | ||
"psr-4": { | ||
"BO\\Zmsticketprinter\\": "src/Zmsticketprinter/", | ||
"BO\\Zmsticketprinter\\Tests\\": "tests/Zmsticketprinter/" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://gitlab+deploy-token-203:[email protected]/land-intranet/slim-psr7.git" | ||
} | ||
] | ||
"config": { | ||
"platform": { | ||
"php": "7.3" | ||
}, | ||
"allow-plugins": { | ||
"php-http/discovery": true | ||
} | ||
}, | ||
"require-dev": { | ||
"phpmd/phpmd": "@stable", | ||
"squizlabs/php_codesniffer": "*", | ||
"phpunit/phpunit": "^9.5.4", | ||
"helmich/phpunit-psr7-assert": "^4.3.0", | ||
"phpspec/prophecy-phpunit": "^2.0.0" | ||
}, | ||
"require": { | ||
"eappointment/mellon": "@dev", | ||
"eappointment/zmsentities": "@dev", | ||
"eappointment/zmsslim": "@dev", | ||
"eappointment/zmsclient": "@dev", | ||
"ext-json": ">=1.0", | ||
"monolog/monolog": "1.*", | ||
"roave/security-advisories": "dev-master", | ||
"twig/twig": "3.*", | ||
"twig/intl-extra": "^3.4" | ||
}, | ||
"bin": [], | ||
"autoload": { | ||
"psr-4": { | ||
"BO\\Zmsticketprinter\\": "src/Zmsticketprinter/", | ||
"BO\\Zmsticketprinter\\Tests\\": "tests/Zmsticketprinter/" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://gitlab+deploy-token-203:[email protected]/land-intranet/slim-psr7.git" | ||
}, | ||
{ | ||
"type": "path", | ||
"url": "../*", | ||
"options": { | ||
"symlink": true | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.