Skip to content
Code-Schnipsel Gruppen Projekte

Add QUIQQER Tooling

Zusammengeführt Jan Wennrich requested to merge feat-quiqqer-tooling into next-2.x
+ 72
72
{
{
"name": "quiqqer/discount",
"name": "quiqqer/discount",
"type": "quiqqer-plugin",
"type": "quiqqer-plugin",
"description": "Create discounts for user groups, specific users as well as time controlled.",
"description": "Create discounts for user groups, specific users as well as time controlled.",
"license": [
"license": [
"PCSG QEL-1.0"
"PCSG QEL-1.0"
 
],
 
"authors": [
 
{
 
"name": "Henning Leutz",
 
"email": "leutz@pcsg.de",
 
"homepage": "https://www.pcsg.de",
 
"role": "Developer"
 
}
 
],
 
"support": {
 
"email": "support@pcsg.de",
 
 
},
 
"require": {
 
"php": "^8.1",
 
 
 
 
 
},
 
"autoload": {
 
"psr-4": {
 
"QUI\\ERP\\Discount\\": "src/QUI/ERP/Discount",
 
"QUITests\\ERP\\Discount\\": "tests/QUITests/ERP/Discount"
 
}
 
},
 
"scripts": {
 
"test": [
 
"@dev:lint",
 
"@dev:phpunit"
],
],
"authors": [
"dev:phpunit": "./tools/phpunit",
{
"dev:lint": [
"name": "Henning Leutz",
"@dev:lint:phpstan",
"email": "leutz@pcsg.de",
"@dev:lint:style"
"homepage": "https://www.pcsg.de",
"role": "Developer"
}
],
],
"support": {
"dev:lint:phpstan": "./tools/phpstan",
"email": "support@pcsg.de",
"dev:lint:style": "./tools/phpcs",
"dev:lint:style:fix": "./tools/phpcbf",
},
"dev:init": [
"require": {
"@dev:init:check-requirements",
"php": "^8.2",
"@dev:init:tools",
"@dev:init:git-hooks"
],
"dev:init:check-requirements": [
"which composer > /dev/null || (echo 'Error: composer has to be globally installed'; exit 1)",
},
"which phive > /dev/null || (echo 'Error: PHIVE has to be globally installed'; exit 1)"
"autoload": {
],
"psr-4": {
"dev:init:tools": "phive install --temporary",
"QUI\\ERP\\Discount\\": "src/QUI/ERP/Discount",
"dev:init:git-hooks": "./tools/captainhook install --only-enabled --force"
"QUITests\\ERP\\Discount\\": "tests/QUITests/ERP/Discount"
},
}
"scripts-aliases": {
},
"test": [
"scripts": {
"dev:test"
"test": [
]
"@dev:lint",
},
"@dev:phpunit"
"scripts-descriptions": {
],
"test": "Runs linting, static analysis, and unit tests.",
"dev:phpunit": "./tools/phpunit",
"dev:phpunit": "Run PHPUnit test suites",
"dev:lint": [
"dev:lint": "Run PHPStan and code style check",
"@dev:lint:phpstan",
"dev:lint:phpstan": "Run PHPStan",
"@dev:lint:style"
"dev:lint:style": "Run code style check (PHP_CodeSniffer)",
],
"dev:lint:style:fix": "Try to fix code style errors automatically",
"dev:lint:phpstan": "./tools/phpstan",
"dev:init": "Initialize the developer tooling (tools and git hooks)",
"dev:lint:style": "./tools/phpcs",
"dev:init:check-requirements": "Check if the necessary requirements are met",
"dev:lint:style:fix": "./tools/phpcbf",
"dev:init:tools": "Install all developer tools (requires PHIVE)",
"dev:init": [
"dev:init:git-hooks": "Install all git hooks (may require tools to be installed)"
"@dev:init:check-requirements",
}
"@dev:init:tools",
}
"@dev:init:git-hooks"
],
"dev:init:check-requirements": [
"which composer > /dev/null || (echo 'Error: composer has to be globally installed'; exit 1)",
"which phive > /dev/null || (echo 'Error: PHIVE has to be globally installed'; exit 1)"
],
"dev:init:tools": "phive install --temporary",
"dev:init:git-hooks": "./tools/captainhook install --only-enabled --force"
},
"scripts-aliases": {
"test": [
"dev:test"
]
},
"scripts-descriptions": {
"test": "Runs linting, static analysis, and unit tests.",
"dev:phpunit": "Run PHPUnit test suites",
"dev:lint": "Run PHPStan and code style check",
"dev:lint:phpstan": "Run PHPStan",
"dev:lint:style": "Run code style check (PHP_CodeSniffer)",
"dev:lint:style:fix": "Try to fix code style errors automatically",
"dev:init": "Initialize the developer tooling (tools and git hooks)",
"dev:init:check-requirements": "Check if the necessary requirements are met",
"dev:init:tools": "Install all developer tools (requires PHIVE)",
"dev:init:git-hooks": "Install all git hooks (may require tools to be installed)"
}
}
\ No newline at end of file
Lade