Download the PHP package asddaniel/conception without Composer

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

Concept Library

The framework for generate code

N|Solid

Build Status

Concept is a framework for generate code with a json config file. the basis of any software developer is not to repeat oneself (DRY principle), concept is a framework that exploits this principle harshly, namely to write configurable application templates for each new project. the framework is built in php for the moment, but aims to be built in different programming languages, the author is counting on the contributors to build a new way of designing applications by gaining productivity while focusing on the conceptual aspects.

Features

The framework is based on the following concepts:

License

GNU General Public License (GPL) version 2

Getting started

concept is based on the creation of application templates that can be generated according to customizable configurations by each developer. in this version Daniel Assani has created a laravel api template. if you are interested, you can contribute by adding another application template or by improving the existing templates

to start using the framework you must clone or fork the example project on github you must start by cloning the starter project on github, this project contains all the elements necessary to load and use the base library that will generate your application. this starter project only contains the tools needed to generate the Laravel api application template the link for the repository is here

composer create-project asddaniel/conception app

this will create a new concept project in a directory "app".

once install the next step is to use basic commands to generate your application inside th e directory app. the project contains a folder named manifest, you will find there a file named LaravelManifest.json, all the configuration of your application must be written in this file, the program will interpret the data above in order to generate the application

Commands and uses

the example configuration file contains an example of the minimal configuration to be done. all parameters are optional, but the data format must be respected to guarantee a functional application example config file { "name":"AppLaravel", "finalize":"true", "output_dir": "test2", "database":{ "db_name":"test", "username":"root", "password":"" }, "models":{ "Article":{"attributes": {"title":"string", "content": "string", "onLine":"boolean"}, "fillable":["title", "content"] }, } }

once the file is configured you can start the command if you are under windows start the command with the word execute

execute

the command Line will ask you to enter a command then you must give :

create laravel-api

if you are under linux or Mac start only the phpcommand (you must ensure that php is installed and it is present in the path whether you are under windows or linux)

php phpcommand create laravel-api

if you have correctly filled your configuration file in json and you have chosen to start the application immediately, the whole application will be generated and you can already go to the browser and test the api endpoints under localhost and port 8000

Dependency

this project uses package of nette "php-generator" as well as nikik's php-parser


All versions of conception with dependencies

PHP Build Version
Package Version
Requires asddaniel/concept Version ^0.1.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 asddaniel/conception contains the following files

Loading the files please wait ....