Download the PHP package taskforcedev/crud-api without Composer

On this page you can find all versions of the php package taskforcedev/crud-api. 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 crud-api

CrudApi

Status: Testing Ready

We have tested the package in multiple scenarios and are comfortable using it in our own production contexts. Please let us know however if you do encounter an issue.

Build Status Scrutinizer Code Quality Codacy Badge Code Climate StyleCI FOSSA Status

Integration Tests

Laravel 5.3 / CrudAPI 1.0.x
Laravel 5.4 / CrudAPI 1.1.x
Laravel 5.5 / CrudAPI 1.1.x

This package provides administration interfaces for models out of the box, in order for this to work Laravel 5.3 conventions must be followed as per the assumptions below:

Assumptions

User Model: This package assumes users will register on their own accord or be able to reset their own password, therefor any field called Password (or lowercase) will be hidden from the admin forms for security purposes.

Installation

To install add the package to your projects composer.json

Laravel 5.3

"require": {
    "taskforcedev/crud-api": "1.0.*"
}

Laravel 5.4

"require": {
    "taskforcedev/crud-api": "1.1.*"
}

Once installed add the service provider in your laravels config/app.php.

'providers' => [
    ...
    // Add the laravel support class also if not already present.
    Taskforcedev\LaravelSupport\ServiceProvider::class,

    Taskforcedev\CrudApi\ServiceProvider::class,
]

Laravel 5.5

"require": {
    "taskforcedev/crud-api": "1.1.*"
}

If you wish to use your own layout in the admin api then follow the instructions from https://github.com/taskforcedev/laravel-support to publish the taskforce-support config and set the layout name there.

In this case a yield is required for scripts to output the javascript required by the framework as well as jquery and bootstrap being included in your application

@yield('scripts')

Configuration

Overriding the configuration is not currently in use however support for other frameworks may be added in the future, incase you wish to override or add to the config use:

php artisan vendor:publish --tag="crudapi-config"

You will then see Copied File at /config/crudapi.php

Technologies Used

Contributing

Please see file CONTRIBUTING.md for information on how you can help.

Security

If you find a security issue in this package please raise an issue with a prefix of [Security] on our Issue Board

License

FOSSA Status


All versions of crud-api with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.4
laravel/framework Version >=5.4
taskforcedev/laravel-support Version 1.1.*
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 taskforcedev/crud-api contains the following files

Loading the files please wait ....