Download the PHP package uniter1/uniter-laravel without Composer

On this page you can find all versions of the php package uniter1/uniter-laravel. 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 uniter-laravel

Short instruction

composer require uniter1/uniter1-laravel php artisan uniter1:register {email} {password}

// edit .env file // UNITER1_ACCESS_TOKEN= token from your mail // UNITER1_PROJECT_DIRECTORY= path to project root

php artisan uniter1:generate {filePath}

Installation

You can install the package via composer:

Testing

To run tests in package, you need to add "PhpUniter\PackageLaravel\Tests\": "vendor/uniter1/uniter1-laravel/tests" to "autoload-dev": "psr-4" section of your composer.json

Usage

User registration:

User will be registered, and access token will be sent to your email. You need to put that token to yours .env file as UNITER1_ACCESS_TOKEN. After that you can send test generation queries.

Package settings:

First, you need to set config values to you .env file:

Access token sent after registration to your email.

Other options you may remain as defaults. Check that unit tests directory (defaults tests/Unit) exists and is writable.

This is web address for our service. Use https://uniter1.tech

Obfuscation option. Set it to false if you need no obfuscation for you code.

Base framework for yours test class.

Base directory to save generated test classes. Check that directory exists and is writable.

if true, private and protected methods will be tested. If false, none.

Test generation

Your class you want to test will be read from {filePath}, obfuscated if you did not turn obfuscation off, sent to our service. There will be created some phpunit test file to test different variants of yours class methods. The result will be deobfuscated and saved to UNITER1_UNIT_TESTS_DIRECTORY - to some nested folder according to class namespace.

Open it, read it and use to test yours class.

Generated class, possibly, will not be completed test - read comments before each generated test method.

overwrite-one-method option allows you to replace only those methods that test one of the methods of the source class in the previously generated test class during generation. Be careful when using it - it is necessary that the previously generated test lies at the same address, and also that no changes are made to the class under test, except for the method that we specified with this option.

Testing

You find package tests in package folder tests.

Security

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

Credits

v1.9


All versions of uniter-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
guzzlehttp/guzzle Version ^7.0@dev
uniter1/uniter-requester Version ^1.3
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 uniter1/uniter-laravel contains the following files

Loading the files please wait ....