Download the PHP package dejwcake/testing-kit without Composer

On this page you can find all versions of the php package dejwcake/testing-kit. 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 testing-kit

Testing Kit

Testing Kit is a Laravel package that provides reusable testing infrastructure for Craftable-based projects. It supplies:

This package is part of Craftable (dejwCake/craftable), an administration starter kit for Laravel.

Install

Add the path repository (or a Packagist version) and require as a dev dependency in your application:

The TestingKitServiceProvider is auto-discovered by Laravel.

Publish the config (optional) to override the user models, default emails, role name, or the OpenAPI spec path:

Config

config/testing-kit.php (after publishing):

Key Default Purpose
user_model App\Models\User Model class used by UserFactory
admin_user_model Brackets\AdminAuth\Models\AdminUser Model class used by AdminUserFactory
authenticated_user_id 123 Default id used by actingAsCustomer() / actingAsAdminUser() when none is passed
dummy_csrf_token 'csrf-token-mock' Token put into the test session
default_locale 'en' Locale set in createApplication()
default_user_email '[email protected]' Email pinned on customer fixtures
default_admin_user_email '[email protected]' Email pinned on admin user fixtures
default_admin_role 'Administrator' Role assigned to admin user fixtures via Spatie HasRoles
openapi.spec_path storage_path('api-docs/openapi.json') Spec file used by ApiTestCase
openapi.regenerate_command 'l5-swagger:generate' Artisan command to regenerate the spec
openapi.regenerate_on_init true Whether ApiTestCase::setUp regenerates the spec

Usage

Web test (HTML snapshot + download assertion)

API test (OpenAPI validation)

Acting as an admin

#[Context(user: 'admin-user')] resolves the guard from admin-auth.defaults.guard (Spatie HasRoles then sees the admin guard, so the role lookup matches the admin-auth installation migration). The fixture admin user has id = testing-kit.authenticated_user_id.

Issues

If something is not working as expected, please open an issue in the main repository https://github.com/dejwCake/craftable.

How to develop this project

Composer

Update dependencies:

Composer normalization:

Run tests

Run tests with pcov:

To regenerate snapshots use:

To switch between postgresql and mariadb change in docker-compose.yml DB_CONNECTION environmental variable:

Run code analysis tools (php-qa)

PHP compatibility:

Code style:

Fix style issues:

Static analysis (phpstan):

Mess detector (phpmd):


All versions of testing-kit with dependencies

PHP Build Version
Package Version
Requires php Version ^8.5
ext-dom Version *
ext-libxml Version *
illuminate/support Version ^13.0
league/openapi-psr7-validator Version ^0.24
mockery/mockery Version ^1.6
nyholm/psr7 Version ^1.8
spatie/phpunit-snapshot-assertions Version ^5.4
symfony/psr-http-message-bridge Version ^8.1
zircote/swagger-php Version ^6.5
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 dejwcake/testing-kit contains the following files

Loading the files please wait ...