Skip to content
GitLab
Erkunden
Anmelden
Registrieren
Primärnavigation
Suchen oder aufrufen …
Projekt
I
Interview
Verwalten
Aktivität
Mitglieder
Labels
Planen
Tickets
1
Ticketübersichten
Meilensteine
Wiki
Code
Merge Requests
1
Repository
Branch
Commits
Tags
Repository-Diagramm
Revisionen vergleichen
Code-Schnipsel
Build
Pipelines
Aufgaben
Pipeline-Zeitpläne
Artefakte
Bereitstellung
Releases
Paket-Registry
Betreiben
Umgebungen
Terraform-Module
Überwachen
Vorfälle
Service-Desk
Analysieren
Wertschöpfungskettenanalyse
Mitwirkenden-Analyse
CI/CD-Analyse
Repository-Analysen
Hilfe
Hilfe
Support
GitLab-Dokumentation
GitLab-Pläne vergleichen
Community-Forum
Zu GitLab beitragen
Feedback geben
Tastenkürzel
?
Code-Schnipsel
Gruppen
Projekte
Show more breadcrumbs
QUIQQER
Interview
Merge Requests
!4
fix(phpstan): correct variable type
Code
Änderungen prüfen
Branch auschecken
Herunterladen
Patches
Unformatierter Diff
Zusammengeführt
fix(phpstan): correct variable type
next-1.x
nach
main
Übersicht
2
Commits
17
Pipelines
1
Änderungen
19
Zusammengeführt
Michael Danielczok
schlägt
vor 1 Monat
vor,
next-1.x
in
main
zu mergen.
Übersicht
2
Commits
17
Pipelines
1
Änderungen
1
Aufklappen
Related:
#4 (closed)
0
0
Merge Request-Berichte
Commit anzeigen
b715776d
Zurück
Weiter
Neuste Version zeigen
1 Datei
+
73
−
31
In der Reihe
Änderungen vergleichen
Nebeneinander
In der Reihe
Leerzeichenänderungen anzeigen
Eine Datei nach der anderen anzeigen
Bestätigt
b715776d
chore: add developer scripts to composer.json
· b715776d
Jan Wennrich
erstellt
vor 10 Monaten
composer.json
+
73
−
31
Optionen
{
"name"
:
"quiqqer
\/
interview"
,
"type"
:
"quiqqer-plugin"
,
"description"
:
"Extension for blog and news plugin. This plugin adds some new attributes and provides new bricks."
,
"license"
:
"GPL-3.0+"
,
"authors"
:
[
{
"name"
:
"Michael Danielczok"
,
"email"
:
"michael@pcsg.de"
,
"homepage"
:
"http:
\/\/
www.pcsg.de"
,
"role"
:
"Developer"
"name"
:
"quiqqer/interview"
,
"type"
:
"quiqqer-plugin"
,
"description"
:
"Extension for blog and news plugin. This plugin adds some new attributes and provides new bricks."
,
"license"
:
"GPL-3.0+"
,
"authors"
:
[
{
"name"
:
"Michael Danielczok"
,
"email"
:
"michael@pcsg.de"
,
"homepage"
:
"
http://www.pcsg.de
"
,
"role"
:
"Developer"
},
{
"name"
:
"Dominik Chrzanowski"
,
"email"
:
"dominik.chrzanowski@gmail.com"
,
"role"
:
"Developer"
}
],
"support"
:
{
"email"
:
"support@pcsg.de"
},
{
"name"
:
"Dominik Chrzanowski"
,
"email"
:
"dominik.chrzanowski@gmail.com"
,
"role"
:
"Developer"
}
],
"support"
:
{
"email"
:
"support@pcsg.de"
},
"require"
:
{
"quiqqer\/quiqqer"
:
">=1.6|dev-master|dev-dev"
},
"suggest"
:
{
"quiqqer\/blog"
:
"Create your own online diary. With the provided page types, managing and creating your own blog is no longer a problem."
,
"quiqqer\/news"
:
"News functionality for the QUIQQER system."
},
"autoload"
:
{
"psr-4"
:
{
"QUI\\Interview\\"
:
"src
\/
QUI
\/
Interview"
"require"
:
{
"
quiqqer/quiqqer
"
:
"
>=1.6|dev-master|dev-dev
"
},
"suggest"
:
{
"quiqqer/blog"
:
"Create your own online diary. With the provided page types, managing and creating your own blog is no longer a problem."
,
"quiqqer/news"
:
"News functionality for the QUIQQER system."
},
"autoload"
:
{
"psr-4"
:
{
"QUI\\Interview\\"
:
"src/QUI/Interview"
}
},
"scripts"
:
{
"test"
:
[
"@dev:lint"
,
"@dev:phpunit"
],
"dev:phpunit"
:
"./tools/phpunit"
,
"dev:lint"
:
[
"@dev:lint:phpstan"
,
"@dev:lint:style"
],
"dev:lint:phpstan"
:
"./tools/phpstan"
,
"dev:lint:style"
:
"./tools/phpcs"
,
"dev:lint:style:fix"
:
"./tools/phpcbf"
,
"dev:init"
:
[
"@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