Download the PHP package kdn/yii2-domain-validator without Composer

On this page you can find all versions of the php package kdn/yii2-domain-validator. 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 yii2-domain-validator

yii2-domain-validator

Domain validator for Yii 2.

License Latest Stable Version Code Coverage Scrutinizer Code Quality Code Climate

Requirements

Installation

The preferred way to install this extension is through Composer.

To install, either run

or add

to the require section of your composer.json file.

Usage

Model class example:

Please view public properties in class DomainValidator to get info about all available options, they documented comprehensively. Here I will highlight only non-evident things.

  1. By default, validator allows URL, it will try to parse URL and then validate domain name. Note that model attribute value itself will not be modified. If URL parsing fails then validator considers value as domain. Validator may work not perfect for invalid URLs. For example user input is http//example.com, the error message will be Each label of the input value can consist of only letters, numbers and hyphens, although it would be better to show something like Invalid URL. The problem is that if field allows both URL and bare domain name and the input value is invalid, then it is impossible to reliably determine what did user want http://example.com or http.example.com. If you don't need URLs at all, only stand-alone domain name, you can disable this behavior by setting allowURL to false. If you always need to validate domain name in URL, no stand-alone domain name, then you should add URL validator before domain name validator:

  2. By default, minimum number of domain name labels is 2. So example - invalid, example.com - valid. It is not standard requirement for domain name, standard states that domain name example is valid. I added this restriction for practical reasons, you can disable it or require even more domain name labels using option labelNumberMin.
  3. Client side validation not implemented, and I have not such plans. Please consider AJAX validation if you want to bring domain validation on client side.

Testing

Make sure you installed all Composer dependencies (run composer update in the base directory of repository). Run PHPUnit in the base directory of repository:

Testing using Docker

Requirements

Up and running

  1. Provide credentials for Composer:

    I suggest to set GitHub OAuth token (also known as personal access token) in auth.json, however if you have doubts about security, or you are lazy to generate token then you can replace content of auth.json on {}, in most cases this will work.

  2. Build images for services:

    or

    see docker buildx bake --help for details.

  3. Start service in background mode:

    This command will start the service with PHP 8.1. Also allowed 7.4, 5.6, 8.1-alpine, 7.4-alpine and 5.6-alpine, see services defined in docker-compose.yml.

  4. Execute tests in the running container:

    Alternatively you can start a shell in the running container and execute tests from it:

  5. Stop and remove containers created by up:

    You may want to remove volumes along with containers:

Backward compatibility promise

yii2-domain-validator is using Semver. This means that versions are tagged with MAJOR.MINOR.PATCH. Only a new major version will be allowed to break backward compatibility (BC).

PHP 8 introduced named arguments, which increased the cost and reduces flexibility for package maintainers. The names of the arguments for methods in yii2-domain-validator is not included in our BC promise.


All versions of yii2-domain-validator with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
ext-ctype Version *
ext-mbstring Version *
yiisoft/yii2 Version 2.*
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 kdn/yii2-domain-validator contains the following files

Loading the files please wait ....