Download the PHP package ali-alharthi/saudiaddress without Composer

On this page you can find all versions of the php package ali-alharthi/saudiaddress. 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 saudiaddress

Saudi National Address API

Latest Version on Packagist Build Status Quality Score Total Downloads

SaudiAddress is a PHP package/library built to consume the Saudi National Address API (api.address.gov.sa). It makes it simple to use most of what the API has to offer.

You can for example retrieve regions, cities, districts, services and addresses from geo coordinates, verify an address and more!

Installation

You can install the package via composer:

Laravel

This package supports Laravel out of the box :smile:.

However, you need to add the following to the config/services.php file:

Then, append the following to the .env file:

Replace YOUR-API-KEY-HERE with your SNA API key, Development with your SNA subscription type and SNA_CACHE with true or false (enable/disable cache).

After that you can use the facade: AliAlharthi\SaudiAddress\Facades\SaudiAddress to access the library.

Usage

As a regualr PHP package:

Laravel:


In the following examples, parameter 'E' stands for English. Default language is Arabic 'A'


:mag: Short Address :new:


:white_check_mark: Verify a Short Address

Short address should consists of 4 letters followed by 4 numbers

An exception will be thrown if an incorrect short address was provided


:earth_asia: Regions

getId() aliases: byId() and id().

getName() aliases: byName(), name() and named().


:earth_asia: Cities

using -1 as the region ID (on the all() method - before the language parameter) or leaving it empty will get all the cities of Saudi Arabia

getId() aliases: byId() and id().

getName() aliases: byName(), name() and named().

getGov() aliases: byGovernorate(), byGov() and govName().


:city_sunset: Districts

getId() aliases: byId() and id().

getName() aliases: byName(), name() and named().


:convenience_store: Services

categories() aliases: cat() and main().

sub() aliases: subCategories() and subServices().

getId() aliases: byId() and id().

getName() aliases: byName(), name(), serviceName() and named().


:round_pushpin: GEO

coordinates() aliases: coords() and location().

getCity() aliases: city().

getAddressOne() aliases: addressOne().

getAddressTwo() aliases: addressTwo().

getStreet() aliases: street().

getRegion() aliases: region().

getDistrict() aliases: district().

getBuildingNumber() aliases: buildingNumber().

getPostCode() aliases: postCode(), getZip() and zip().

getAdditionalNumber() aliases: additionalNumber().


:mag: Address Lookup

if page is set to 1 the package will loop through the pages and combine the results

Developer Subscriptions will sleep for 5 seconds before fetching the next page!


:white_check_mark: Verify an Address


:bell: Other Information

This package was built by a single person within 2-3 days due to an actual need in a real-world project.

This is still considered simple but gets the job done. Plus contributions (CONTRIBUTING) are welcomed :grin:.

:zap: Cache

This package has a simple file cache system. Most of the API requests will be saved in the Api/Cache/ directory due to the limitation on the Development subscription (1000 requests per month).

Redis and other cache methods will be added in the future versions


Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of saudiaddress with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
guzzlehttp/guzzle Version ^7.0
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 ali-alharthi/saudiaddress contains the following files

Loading the files please wait ....