Download the PHP package itedo/itedo-make without Composer

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

itedo-make

config/app.php 加配置

自定义命令

根据业务需求,重写常用命令。以方便快捷生成开发文件

命令 介绍 用法
make:auto-controller 创建资源控制器命令 php artisan make:auto-controller Admin
make:auto-request 创建请求校验命令 php artisan make:auto-request Admin
make:auto-resource 创建资源返回命令 php artisan make:auto-resource Admin
clearAll 清楚所有缓存命令 php artisan clearAll
make:auto-make 创建资源集合命令 php artisan make:auto-make Admin

*注意: make:auto-make命令会生成三个文件

├── app                 
|   ├── Http                
|       ├── Controllers 
|           ├── AdminControllers.php        #命令生成控制器
|       ├── Requests    
|           ├── AdminRequest.php            #命令生成请求校验类
|       ├── Resources   
|           ├── AdminResource.php           #命令生成资源返回类

常用命令

整理部分常用命令

命令 介绍 用法
make:migration 创建数据迁移表 php artisan make:migration CreateAdminTable
migrate 执行数据表迁移 php artisan migrate Admin
make:model 创建数据模型 php artisan make:model Admin
make:command 创建命令定时事务 php artisan make:command Admin
make:event 创建事件 php artisan make:event Admin
make:job 创建队列任务 php artisan make:job Admin
make:listener 创建监听器 php artisan make:listener Admin
make:observer 创建观察者 php artisan make:observer Admin
make:notification 创建通知驱动类 php artisan make:notification Admin
make:provider 创建服务提供者 php artisan make:provider Admin
make:rule 创建规则类 php artisan make:rule Admin
make:test 创建单元测试 php artisan make:test Admin

All versions of itedo-make with dependencies

PHP Build Version
Package Version
Requires php Version ^7.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 itedo/itedo-make contains the following files

Loading the files please wait ....