Download the PHP package wagento/module-sms-notifications without Composer

On this page you can find all versions of the php package wagento/module-sms-notifications. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package module-sms-notifications

Wagento SMS Notifications powered by LINK Mobility

Wagento SMS Notifications integrates Magento 2 with the LINK Mobility mobile messaging service to send transactional text notifications. Customers can be notified when their order is successfully placed as well as when it is invoiced, shipped, canceled, refunded, held or released.

Detailed instructions for installation, configuration and usage can be found in the User Guide.

Requirements

Installation

Composer (recommended)

We highly recommend purchasing the extension from the Magento Marketplace, where you can receive the latest version for free. Once purchased, you can use the following commands to install it from a terminal or command prompt:

$ cd /path/to/your/site
$ composer require wagento/module-sms-notifications

Manual

This extension can be downloaded from GitHub and installed into the app/code directory of your Magento installation with these commands:

$ cd /path/to/your/site/app/code
$ mkdir Wagento
$ cd Wagento
$ git clone [email protected]:wagento/sms-notifications.git SMSNotifications

Post-Install

After installing the extension for the first time, please run these commands to enable it:

$ cd /path/to/your/site
$ php bin/magento module:enable Wagento_SMSNotifications

Once you have enabled the extension, please follow the instructions in the Post-Install, Post-Update or Post-Uninstall section to complete the installation process.

Updating

Composer

If you've installed the extension from the Magento Marketplace using Composer, run these commands from your terminal or command prompt to update it:

$ cd /path/to/your/site
$ composer update wagento/module-sms-notifications

Manual

If you've installed the extension from GitHub manually, run these commands from your terminal or command prompt to update it:

$ cd /path/to/your/site/app/code/Wagento/SMSNotifications
$ git pull

Uninstalling

Composer

If you've installed the extension from the Magento Marketplace using Composer, run these commands from your terminal or command prompt to remove its data and package:

$ cd /path/to/your/site
$ php bin/magento module:uninstall -r Wagento_SMSNotifications

Manual

If you've installed the extension manually, run these commands from your terminal or command prompt to remove its data:

$ cd /path/to/your/site/app/code
$ rm -rf Wagento/SMSNotifications
$ mysql -u your_user -p your_database <<'SQL'
DROP TABLE `directory_telephone_prefix`;
DROP TABLE `sms_subscription`;
DELETE FROM `eav_attribute` WHERE `attribute_code` LIKE 'sms_mobile%';
DELETE FROM `core_config_data` WHERE `path` LIKE 'sms_notifications/%';
SQL

Post-Install, Post-Update or Post-Uninstall

To complete the installation, update or uninstall process, please run these commands:

$ cd /path/to/your/site
$ php bin/magento setup:upgrade
$ php bin/magento setup:di:compile
$ php bin/magento setup:static-content:deploy

Configuration

The settings can configured in the Admin panel at Stores > Settings > Configuration > General > SMS Notifications. For detailed descriptions of the available options, please refer to the User Guide.

Support

If you experience any issues or errors while using the extension, please open a ticket by sending an e-mail to [email protected]. Be sure to include your domain, PHP version, Magento version, a detailed description of the problem including steps to reproduce it and any other relevant information. We do our best to respond to all legitimate inquires within 48 business hours.

License

The source code contained in this extension is licensed under version 3.0 of the Open Software License (OSL-3.0). A full copy of the license can be found in the LICENSE.txt file.

History

A full history of the extension can be found in the CHANGELOG.md file.

Contributing

We welcome any and all feedback, suggestions and improvements submitted via issues and pull requests on GitHub. For guidelines, please see the CONTRIBUTING.md document.

Credits

This extension was developed by Joseph Leedy and Yair García Torres of Wagento in co-operation with LINK Mobility.


All versions of module-sms-notifications with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3
ext-json Version *
magento/framework Version 102.0.* || 103.0.*
magento/module-backend Version 101.0.* || 102.0.*
magento/module-config Version 101.1.* || 101.2.*
magento/module-customer Version 102.0.* || 103.0.*
magento/module-sales Version 102.0.* || 103.0.*
magento/module-store Version 101.0.* || 101.1.*
magento/module-theme Version 101.0.* || 101.1.*
magento/module-translation Version 100.3.* || 100.4.*
magento/module-ui Version 101.1.* || 101.2.*
guzzlehttp/guzzle Version ^6.0
myclabs/php-enum Version ^1.6
zendframework/zend-hydrator Version ^1.1 || ^2.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wagento/module-sms-notifications contains the following files

Loading the files please wait ....