Download the PHP package rolice/laravel5-domain-authority without Composer

On this page you can find all versions of the php package rolice/laravel5-domain-authority. 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 laravel5-domain-authority

laravel5-domain-authority

Domain authority API consumer for Laravel 5 and inclusively any composer project, relying on Moz.

This package is designed to consume statistical data from Moz API service. In order to utilize the functionality you should have at least free moz account, which can be registered here: https://moz.com/community/join.

The API provide SEO, ranking and authority statistics about a websites, specific domains or subdomains, single pages and internal/external linking.

This package is in basic development phase and not all fields and functionalities are covered. However the base is ready and it is matter of definition to fulfill other property data. Link metrics are missing and batch domain requests are not implemented as well.

The package is tested only on Laravel 5. It can be adapted for Laravel 4 easily as it does not depend on the framework heavily.

Feel free to fork and commit improvements and extensions of the project. The issues section is open for comments, problem reports and suggestions.

Requirements

Installations via composer exclusively will require 64-bit version of PHP, due to high values in the bit-fields, used to query Moz API. A fix is not planned currently for 32-bit versions of PHP, since it will require major extension to support it without crapping the style with hardcoded values as strings.

With manual installation it will work correctly util the column value or bitwise sum of columns for mozspace API exceed integer size on 32-bit platforms (32-bit builds of PHP).

Read more about this issue on URL Metrics page in the project Wiki.

Implementation Level (Supported API)

Here is defined the progress of implementation against Moz API. End-points marked with + are implemented, those with - are not.

Additional Features

Installation

The installation process is extremely easy with composer.

Use for production installations:

composer require 'rolice/laravel5-domain-authority:0.3.2' (production, stable)

Latest development version:

composer require 'rolice/laravel5-domain-authority:dev-master' (latest, unstable)

Once the package is set up for you with the help of composer you have to define service provider and aliases in the application config file, located at <project_root>/config/app.php.

The two records in aliases section will allow you to use these classes directly into the views, without calling them through their full namespace.

After you are done you have to publish the the package through the following artisan command:

php artisan vendor:publish

This is required in order to publish the config of the package directly in application config folder. You will find there the new file named domainauthority.php. Edit it and enter the data from your Moz account service authorization:

They can be obtained from the [Access section of your API Dashboard in Moz] (https://moz.com/products/mozscape/access).

Now you are ready to consume the data.

Usage

Currently only URL metrics are implemented. An example how to collect title data and domain authority about an URL is written below:

The get method of the DomainAuthority requires an URL address and columns. The columns are passed in the same style as for the Moz API - in bit field. The result is an instance of UrlMetrics, with fields named same way as the columns requested (the class constants).

Caution: These fields are dynamically generated with the help of __get magic method and ReflectionClass. They are not defined in the UrlMetrics class. Some functions like proprty_exists may fail on detecting them.

Domain Age Usage

You can use Domain Age interface fairly easily. It works with who.is website and parses the dates from their response. The class is named DomainAge. It contains three methods:

Inpotant: Keep in mind that since and age methods will produce cURL request to who.is website, and exceeding certain limits may result in temporarily unavailable service or ban. A good idea here is to store domain birth date returned from since method in some data repository (DB, FileSystem, etc.) and use fromDate to directly get age later without new requests.


All versions of laravel5-domain-authority with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
illuminate/support Version 5.0.*
illuminate/filesystem Version 5.0.*
illuminate/console Version 5.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 rolice/laravel5-domain-authority contains the following files

Loading the files please wait ....