{"id":28408419,"url":"https://github.com/nishchay/framework","last_synced_at":"2026-03-09T21:04:31.045Z","repository":{"id":48556981,"uuid":"275789574","full_name":"nishchay/framework","owner":"nishchay","description":"Nishchay - PHP framework","archived":false,"fork":false,"pushed_at":"2021-09-18T15:21:26.000Z","size":1293,"stargazers_count":13,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-31T01:44:39.204Z","etag":null,"topics":["framework","nishchay","php","php-framework"],"latest_commit_sha":null,"homepage":"https://nishchay.io","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:56.000Z","updated_at":"2022-06-04T22:51:18.000Z","dependencies_parsed_at":"2022-08-23T16:20:37.202Z","dependency_job_id":null,"html_url":"https://github.com/nishchay/framework","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/nishchay/framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fframework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fframework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fframework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fframework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nishchay","download_url":"https://codeload.github.com/nishchay/framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nishchay%2Fframework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30312141,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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","php-framework"],"created_at":"2025-06-02T03:09:37.764Z","updated_at":"2026-03-09T21:04:31.017Z","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## Next thing\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%2Fframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnishchay%2Fframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishchay%2Fframework/lists"}