-
- Downloads
Merge branch 'next-0.x' into 'main'
Next 0.x See merge request !7
- .gitattributes 15 Ergänzungen, 0 Löschungen.gitattributes
- .gitignore 8 Ergänzungen, 0 Löschungen.gitignore
- .gitlab-ci.yml 19 Ergänzungen, 0 Löschungen.gitlab-ci.yml
- .phive/phars.xml 8 Ergänzungen, 0 Löschungen.phive/phars.xml
- CONTRIBUTING.md 3 Ergänzungen, 0 LöschungenCONTRIBUTING.md
- captainhook.json 13 Ergänzungen, 0 Löschungencaptainhook.json
- composer.json 57 Ergänzungen, 15 Löschungencomposer.json
- index.php 6 Ergänzungen, 3 Löschungenindex.php
- phpcs.xml.dist 23 Ergänzungen, 0 Löschungenphpcs.xml.dist
- phpstan-baseline.neon 31 Ergänzungen, 0 Löschungenphpstan-baseline.neon
- phpstan.dist.neon 10 Ergänzungen, 0 Löschungenphpstan.dist.neon
- phpunit.dist.xml 8 Ergänzungen, 0 Löschungenphpunit.dist.xml
- src/QUI/TemplateTailwindCss/Controls/Children/ListPreview.php 16 Ergänzungen, 12 Löschungen...QUI/TemplateTailwindCss/Controls/Children/ListPreview.php
- src/QUI/TemplateTailwindCss/Controls/Children/SiteListPreview.php 16 Ergänzungen, 12 Löschungen...TemplateTailwindCss/Controls/Children/SiteListPreview.php
- src/QUI/TemplateTailwindCss/Controls/Separator.php 2 Ergänzungen, 2 Löschungensrc/QUI/TemplateTailwindCss/Controls/Separator.php
- src/QUI/TemplateTailwindCss/EventHandler.php 3 Ergänzungen, 2 Löschungensrc/QUI/TemplateTailwindCss/EventHandler.php
- src/QUI/TemplateTailwindCss/Utils.php 7 Ergänzungen, 7 Löschungensrc/QUI/TemplateTailwindCss/Utils.php
- tests/phpstan-bootstrap.php 13 Ergänzungen, 0 Löschungentests/phpstan-bootstrap.php
- tests/phpunit-bootstrap.php 11 Ergänzungen, 0 Löschungentests/phpunit-bootstrap.php
.gitattributes
0 → 100644
.gitlab-ci.yml
0 → 100644
.phive/phars.xml
0 → 100644
CONTRIBUTING.md
0 → 100644
captainhook.json
0 → 100644
{ | ||
"name": "quiqqer\/template-tailwindcss", | ||
"name": "quiqqer/template-tailwindcss", | ||
"type": "quiqqer-template", | ||
"description": "TailwindCSS template", | ||
"license": "GPL-3.0+", | ||
... | ... | @@ -7,30 +7,72 @@ |
{ | ||
"name": "Michael Danielczok", | ||
"email": "support@pcsg.de", | ||
"homepage": "https:\/\/www.pcsg.de", | ||
"homepage": "https://www.pcsg.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "support@pcsg.de", | ||
"url": "http:\/\/www.pcsg.de" | ||
"url": "http://www.pcsg.de" | ||
}, | ||
"require": { | ||
"php": ">=5.3", | ||
"quiqqer\/quiqqer": "*@dev", | ||
"quiqqer\/bricks": "*@dev", | ||
"quiqqer\/fontawesome": "*@dev", | ||
"quiqqer\/sitetypes": "*@dev", | ||
"quiqqer\/menu": "2.*|dev-dev|dev-master", | ||
"quiqqer\/unsemantic": "*@dev", | ||
"quiqqer\/utils": ">=1.7|dev-dev", | ||
"quiqqer\/page-transition": "^1.2", | ||
"quiqqer\/pace": ">=1.2.0|dev-master|dev-dev", | ||
"quiqqer\/buttons": ">=1.0.0|dev-master|dev-dev" | ||
"quiqqer/quiqqer": "^1", | ||
"quiqqer/bricks": "*@dev", | ||
"quiqqer/fontawesome": "*@dev", | ||
"quiqqer/sitetypes": "*@dev", | ||
"quiqqer/menu": "^2|*@dev", | ||
"quiqqer/unsemantic": "*@dev", | ||
"quiqqer/utils": "^1.7", | ||
"quiqqer/page-transition": "^1.2", | ||
"quiqqer/pace": "^1.2.0", | ||
"quiqqer/buttons": "^1.0.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"QUI\\TemplateTailwindCss\\": "src\/QUI\/TemplateTailwindCss" | ||
"QUI\\TemplateTailwindCss\\": "src/QUI/TemplateTailwindCss" | ||
} | ||
}, | ||
"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 |
phpcs.xml.dist
0 → 100644
phpstan-baseline.neon
0 → 100644
phpstan.dist.neon
0 → 100644
phpunit.dist.xml
0 → 100644
tests/phpstan-bootstrap.php
0 → 100644
tests/phpunit-bootstrap.php
0 → 100644
Bitte registrieren oder Anmelden zum Kommentieren