{"id":37365734,"url":"https://github.com/nishchay/nishchay","last_synced_at":"2026-01-16T04:51:23.424Z","repository":{"id":48556905,"uuid":"275789436","full_name":"nishchay/nishchay","owner":"nishchay","description":"Nishchay - PHP framework","archived":false,"fork":false,"pushed_at":"2021-09-18T15:20:49.000Z","size":314,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T14:46:36.894Z","etag":null,"topics":["framework","nishchay","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nishchay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-29T11:10:24.000Z","updated_at":"2021-09-18T15:20:52.000Z","dependencies_parsed_at":"2022-08-28T10:21:02.870Z","dependency_job_id":null,"html_url":"https://github.com/nishchay/nishchay","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/nishchay/nishchay","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fnishchay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fnishchay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fnishchay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fnishchay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nishchay","download_url":"https://codeload.github.com/nishchay/nishchay/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fnishchay/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477210,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["framework","nishchay","php"],"created_at":"2026-01-16T04:51:23.340Z","updated_at":"2026-01-16T04:51:23.411Z","avatar_url":"https://github.com/nishchay.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nishchay PHP Framework\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://nishchay.io\"\u003e\n      \u003cimg src=\"https://static.nilms.org/nishchay/resources/images/nishchay.png\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n![PHP Version Support](https://img.shields.io/packagist/php-v/nishchay/nishchay)\n![Latest version](https://img.shields.io/packagist/v/nishchay/nishchay.svg)\n![Downloads](https://img.shields.io/packagist/dt/nishchay/nishchay.svg)\n\nNishchay is open structure php framework which allows us to create web application, REST web services and more.\n\n## Install\n\nThis framework is installed using composer only. Use below command\n\n```\ncomposer create-project nishchay/nishchay {YourAppName}\n```\n\n## Installaion guidelines\n\n- [Linux Ubuntu](https://nishchay.io/learningCenter/installation/ubuntu/composer)\n- [Linux CentOS](https://nishchay.io/learningCenter/installation/centos/composer)\n- [Windows](https://nishchay.io/learningCenter/installation/windows/composer)\n- [MacOS](https://nishchay.io/learningCenter/installation/macos/composer)\n\n## Learn\n\nLearn everything about nishchay [here](https://nishchay.io/learningCenter).\n\n## Your first step (First timer)\n\nIf you are using framework for the first time, please go throw implementation which came with installatiion.\n\nThis installation comes with following implementations:\n\n1. Login\n2. Register\n3. Get user detail\n4. Static pages `aboutUs`, `help` \u0026 `terms`.\n\n#### Setup things\n\nSetup your application by one of **Installaion guidelines**, once that is done follow below steps\n\n###### Step 1: Database setting\n\nDatabase settings are located in `settings/configuration/database.php`, where you can place one or more database connection configuration.\n\n###### Step 2: Import tables\n\nIn order to check implementation which came with installation, please execute `db.sql` which is placed at root directory of application.\n\n###### Step 3: Create account\n\nIf 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:\n\n1. email\n2. firstName\n3. lastName\n4. password\n5. isTermAccepted = Y\n6. scope=user\n\nThis will return access token using which you can access services which requires token.\n\n###### Step 4: Check login\n\nCheck 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:\n\n1. email\n2. password\n3. scope=user\n\nThis service also returns access token.\n\n###### Step 5: Get user detail\n\nUsing `http://app.nishchay.local/service/account` service get user detail, You only need to following parameters:\n\n1. Pass access token in header with name `X-Service-Token`.\n2. Pass `scope` in GET parameter.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishchay%2Fnishchay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnishchay%2Fnishchay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishchay%2Fnishchay/lists"}