Initial commit: prestashop-entity-selector

Forked from prestashop-target-conditions
Renamed all references from target-conditions to entity-selector
This commit is contained in:
2026-01-26 14:02:54 +00:00
commit a285018e0d
18 changed files with 39802 additions and 0 deletions

27
composer.json Executable file
View File

@@ -0,0 +1,27 @@
{
"name": "myprestarocks/prestashop-entity-selector",
"description": "Universal entity selection widget for PrestaShop admin controllers - select products, categories, manufacturers with include/exclude logic",
"keywords": ["prestashop", "admin", "controller", "traits", "entity", "selector", "products", "categories"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mypresta.rocks",
"email": "info@mypresta.rocks"
}
],
"require": {
"php": ">=7.1"
},
"autoload": {
"psr-4": {
"MyPrestaRocks\\EntitySelector\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"minimum-stability": "stable"
}