siip-stripe-payment_intents/vendor/ubnt/ucrm-plugin-sdk/composer.json
DANYDHSV c43bb924d7 feat: lanzamiento inicial del plugin Generador de Payment Intents
- Implementado servicio backend [PaymentIntentService](cci:2://file:///home/unms/data/ucrm/ucrm/data/plugins/siip-stripe-payment_intents/src/PaymentIntentService.php:8:0-152:1) para manejar interacciones con API de UCRM y Stripe.
- Creado frontend moderno y responsivo en HTML/JS dentro de [public.php](cci:7://file:///home/unms/data/ucrm/ucrm/data/plugins/siip-stripe-payment_intents/public.php:0:0-0:0).
- Agregada búsqueda con autocompletado para clientes.
- Agregada validación para Stripe Customer ID y monto mínimo.
- Integrada la creación de Payment Intents de Stripe para fondos tipo `customer_balance`.
- Agregada documentación (README.md, CHANGELOG.md) y limpieza de archivos legado.
2025-12-16 13:56:31 -06:00

42 lines
1.0 KiB
JSON

{
"name": "ubnt/ucrm-plugin-sdk",
"description": "UCRM plugin SDK",
"keywords": ["ucrm", "sdk"],
"type": "library",
"homepage": "https://github.com/Ubiquiti-App/UCRM-Plugin-SDK",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5",
"symfony/filesystem": "^6.2"
},
"autoload": {
"psr-4": {
"Ubnt\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"eloquent/phony-phpunit": "^7.1",
"phpstan/phpstan": "^1.10",
"eloquent/phpstan-phony": "^0.8.0",
"phpstan/phpstan-strict-rules": "^1.2",
"symplify/easy-coding-standard": "^10.2",
"php-coveralls/php-coveralls": "^2.5",
"ocramius/package-versions": "^2.7"
},
"suggest": {
"ext-zip": "Needed for pack-plugin script."
},
"bin": [
"bin/pack-plugin"
]
}