Commits auf Quelle (22)
-
verfasst von Jan Wennrich
Dev Closes #20 See merge request !1
ac26d731 -
verfasst von Patrick Müller
(cherry picked from commit 13c86c4a)
cea1090e -
verfasst von Moritz Scholz2f94d07d
-
verfasst von Patrick Müller51ff363a
-
verfasst von Patrick Müllerb9781947
-
verfasst von Henning Leutz
Next See merge request !5
3c67f6a3 -
verfasst von Henning Leutz
fix(CustomerReviewsSlider): change search scope for .glide to local instead of global See merge request !7
4cfb3639 -
verfasst von Henning Leutz
feat: quiqqer v2 compatibility See merge request !10
6c66850a -
verfasst von Jan WennrichBestätigtf279a622
-
verfasst von Jan WennrichBestätigtf83cf482
-
verfasst von Jan WennrichBestätigt398dfc61
-
verfasst von Jan WennrichBestätigt5da2164c
-
verfasst von Jan WennrichBestätigta5b2dcbc
-
verfasst von Jan WennrichBestätigt53b555f7
-
verfasst von Jan WennrichBestätigtbbbad24e
-
verfasst von Jan WennrichBestätigtb9ffae76
-
verfasst von Jan WennrichBestätigtf7e2d78b
-
verfasst von Jan WennrichBestätigt82c8c10b
-
verfasst von Jan Wennrich
Add QUIQQER Tooling See merge request !11
0515fb5e -
verfasst von Henning Leutz
This commit addresses the issue where a call to the undefined method `getImages` on the possible `false` in `Carousel.php` was causing an error. A check is now in place before calling the method. Consequently, the phpstan-baseline.neon file has also been updated to remove the now unnecessary error suppression. Related: #28
a1edc7bb -
verfasst von Henning Leutz
fix: handle non-existing getImages method in Carousel class See merge request !12
fccb3702 -
verfasst von Henning Leutz
Update 'next-3.x' with latest changes from 'main' See merge request !13
36b060fd
- .gitattributes 15 Ergänzungen, 0 Löschungen.gitattributes
- .gitignore 8 Ergänzungen, 1 Löschung.gitignore
- .gitlab-ci.yml 16 Ergänzungen, 2 Löschungen.gitlab-ci.yml
- .phive/phars.xml 5 Ergänzungen, 1 Löschung.phive/phars.xml
- CONTRIBUTING.md 3 Ergänzungen, 0 LöschungenCONTRIBUTING.md
- captainhook.json 13 Ergänzungen, 0 Löschungencaptainhook.json
- composer.json 66 Ergänzungen, 24 Löschungencomposer.json
- phpcs.xml.dist 23 Ergänzungen, 0 Löschungenphpcs.xml.dist
- phpstan-baseline.neon 2 Ergänzungen, 0 Löschungenphpstan-baseline.neon
- phpstan.dist.neon 1 Ergänzung, 1 Löschungphpstan.dist.neon
- phpunit.dist.xml 8 Ergänzungen, 0 Löschungenphpunit.dist.xml
- src/QUI/Slider/Controls/Logo/Carousel.php 7 Ergänzungen, 3 Löschungensrc/QUI/Slider/Controls/Logo/Carousel.php
- tests/phpunit-bootstrap.php 11 Ergänzungen, 0 Löschungentests/phpunit-bootstrap.php
.gitattributes
0 → 100644
CONTRIBUTING.md
0 → 100644
captainhook.json
0 → 100644
{ | { | ||
"name": "quiqqer/slider", | "name": "quiqqer/slider", | ||
"type": "quiqqer-module", | "type": "quiqqer-module", | ||
"description": "The package provides several sliders for QUIQQER.", | "description": "The package provides several sliders for QUIQQER.", | ||
"license": "GPL-3.0+", | "license": "GPL-3.0+", | ||
"authors": [ | "authors": [ | ||
{ | { | ||
"name": "Henning Leutz", | "name": "Henning Leutz", | ||
"email": "leutz@pcsg.de", | "email": "leutz@pcsg.de", | ||
"homepage": "https://www.pcsg.de", | "homepage": "https://www.pcsg.de", | ||
"role": "Developer" | "role": "Developer" | ||
} | |||
], | |||
"support": { | |||
"email": "support@pcsg.de" | |||
}, | |||
"require": { | |||
"quiqqer/core": "^2", | |||
"quiqqer/gallery": "^2" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"QUI\\Slider\\": "src/QUI/Slider" | |||
} | |||
}, | |||
"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)" | |||
} | } | ||
], | } | ||
"support": { | \ No newline at end of file | ||
"email": "support@pcsg.de" | |||
}, | |||
"require": { | |||
"quiqqer/core": "^2", | |||
"quiqqer/gallery": "^2" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"QUI\\Slider\\": "src/QUI/Slider" | |||
} | |||
} | |||
} |
phpcs.xml.dist
0 → 100644
phpunit.dist.xml
0 → 100644
tests/phpunit-bootstrap.php
0 → 100644