juanalessandrini / apiwapp_conector
Script php to connect apiwapp.com.ar services
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/juanalessandrini/apiwapp_conector
Requires
- doctrine/orm: ^2.14
- symfony/framework-bundle: 5.2.*
- symfony/http-client: 5.2.*
Requires (Dev)
- symfony/maker-bundle: ^1.43
This package is auto-updated.
Last update: 2025-10-09 15:54:16 UTC
README
Script php to connect apiwapp.com.ar services
Follow the instructions
- Add library reference
- Goto ApiWapp.com.ar and get the API token.
- Replace token on .env file
- Add library reference
- Create class instance:
- Call to method to send message:
composer install juanalessandrini/apiwapp_conector
// vendor/juanalessandrini/apiwapp_conector/.env APIWAPP_TOKEN=yourToken
use Juanalessandrini\Apiwapp\Conector\ApiWappConector;
$whatsapp = new ApiWappConector(EntityManagerInterface,HttpClientInterface);
$whatsapp->sendMessage($template_uid, $params, $target);