Download the PHP package nishchay/framework without Composer

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

Nishchay PHP Framework

PHP Version Support Latest version Downloads

Nishchay is open structure php framework which allows us to create web application, REST web services and more.

Install

This framework is installed using composer only. Use below command

Installaion guidelines

Learn

Learn everything about nishchay here.

Next thing

If you are using framework for the first time, please go throw implementation which came with installatiion.

This installation comes with following implementations:

  1. Login
  2. Register
  3. Get user detail
  4. Static pages aboutUs, help & terms.

Setup things

Setup your application by one of Installaion guidelines, once that is done follow below steps

Step 1: Database setting

Database settings are located in settings/configuration/database.php, where you can place one or more database connection configuration.

Step 2: Import tables

In order to check implementation which came with installation, please execute db.sql which is placed at root directory of application.

Step 3: Create account

If you have configured your app on domain name http://app.nishchay.local, then make POST request to http://app.nishchay.local/service/account/register with following parameters:

  1. email
  2. firstName
  3. lastName
  4. password
  5. isTermAccepted = Y
  6. scope=user

This will return access token using which you can access services which requires token.

Step 4: Check login

Check login service by providing credential which you used while creating account in above step. This service is accessed at http://app.nishchay.local/service/account/authorize. Pass following parameters:

  1. email
  2. password
  3. scope=user

This service also returns access token.

Step 5: Get user detail

Using http://app.nishchay.local/service/account service get user detail, You only need to following parameters:

  1. Pass access token in header with name X-Service-Token.
  2. Pass scope in GET parameter.

All versions of framework with dependencies

PHP Build Version
Package Version
Requires php Version ~8.0
swiftmailer/swiftmailer Version ~6.2.3
twig/twig Version ~3.0.3
pear/console_table Version ~1.3.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 nishchay/framework contains the following files

Loading the files please wait ....