Skip to content

Commit

Permalink
ZMS-1901: add ticketprinter config files
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasholler committed Jan 24, 2024
1 parent 786d65e commit 18f7325
Show file tree
Hide file tree
Showing 6 changed files with 11,611 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ webimage_extra_packages:
- python3-click
- python3-git
- python3-colorama
- make

# Extra Debian packages that are needed in the webimage can be added here

Expand Down
3 changes: 1 addition & 2 deletions zmsticketprinter/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

COMPOSER=php -d suhosin.executor.include.whitelist=phar bin/composer.phar
COMPOSER=composer

help:
grep -P "^\w+:" Makefile|sort|perl -pe 's/^(\w+):([^\#]+)(\#\s*(.*))?/\1\n\t\4\n/'
Expand Down
57 changes: 57 additions & 0 deletions zmsticketprinter/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "bo/zmsticketprinter",
"description": "Frontend for ticketprinter",
"license": "EUPL-1.2",
"authors": [
{
"name": "Torsten Kunst",
"email": "[email protected]"
},
{
"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"
}
]
}
Loading

0 comments on commit 18f7325

Please sign in to comment.