{"id":15022110,"url":"https://github.com/naventum/naventum","last_synced_at":"2025-07-06T20:39:08.602Z","repository":{"id":40004486,"uuid":"437765784","full_name":"naventum/naventum","owner":"naventum","description":"The Naventum simple PHP Framework","archived":false,"fork":false,"pushed_at":"2024-09-19T22:50:30.000Z","size":762,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":0,"default_branch":"1.x","last_synced_at":"2025-04-12T06:16:33.277Z","etag":null,"topics":["composer","open-source","open-source-project","php","php-frameworks","php-library","php-micro-framework","php-microframework"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/naventum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-12-13T06:49:00.000Z","updated_at":"2023-12-15T03:41:47.000Z","dependencies_parsed_at":"2025-04-12T06:26:42.563Z","dependency_job_id":null,"html_url":"https://github.com/naventum/naventum","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/naventum/naventum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naventum%2Fnaventum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naventum%2Fnaventum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naventum%2Fnaventum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naventum%2Fnaventum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naventum","download_url":"https://codeload.github.com/naventum/naventum/tar.gz/refs/heads/1.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naventum%2Fnaventum/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263969764,"owners_count":23537476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["composer","open-source","open-source-project","php","php-frameworks","php-library","php-micro-framework","php-microframework"],"created_at":"2024-09-24T19:57:28.291Z","updated_at":"2025-07-06T20:39:08.581Z","avatar_url":"https://github.com/naventum.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Naventum\n\nThe Naventum simple PHP Framework\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://github.styleci.io/repos/457622076?branch=1.x\"\u003e\u003cimg src=\"https://github.styleci.io/repos/457622076/shield?branch=1.x\" alt=\"StyleCI\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/naventum/naventum/actions/workflows/codeql-analysis.yml\"\u003e\u003cimg src=\"https://github.com/naventum/naventum/actions/workflows/codeql-analysis.yml/badge.svg\" alt=\"CodeQL\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/naventum/naventum/actions/workflows/ci.yml\"\u003e\n        \u003cimg src=\"https://github.com/naventum/naventum/actions/workflows/ci.yml/badge.svg\" alt=\"CI Tests\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/naventum/naventum\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/naventum/naventum\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/naventum/naventum\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/naventum/naventum\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/naventum/naventum\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/naventum/naventum\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n### Installation\nThe best way to use this boilerplate is using [Composer](https://getcomposer.org/).\n\n```bash\ncomposer create-project naventum/naventum app-name\n```\n#### Run local server\nRun the server using default php.\n```bash\nphp -S localhost:8000 -t public\n```\n\n#### Authentication\nNaventum default authentication.\n```bash\ncomposer require naventum/naventum-auth\n```\nRegister the naventum auth provider \n```Naventum\\NaventumAuth\\Illuminate\\Foundation\\Support\\NaventumauthServiceProvider``` at ```config/app.php```\n```php\n...\n'providers' =\u003e [\n        /*\n         * Naventum Framework Service Providers...\n         */\n        Naventum\\Framework\\Illuminate\\Debug\\DebugServiceProvider::class,\n        Naventum\\Framework\\Illuminate\\Foundation\\Support\\Providers\\AuthServiceProvider::class,\n        App\\Providers\\RouteServiceProvider::class,\n        App\\Providers\\AppServiceProvider::class,\n\n        Naventum\\NaventumAuth\\Illuminate\\Foundation\\Support\\NaventumauthServiceProvider::class,\n        ...\n]\n```\nFor configuring features, create a php file ```config/naventum-auth.php```, fill\n```php\n\u003c?php\n\nreturn [\n    'features' =\u003e [\n        'login' =\u003e env('NAVENTUM_AUTH_LOGIN', true),\n        'register' =\u003e env('NAVENTUM_AUTH_REGISTER', true),\n    ]\n];\n```\nLogin : [http://localhost:8000/auth/login](http://localhost:8000/auth/login)\n\nRegister : [http://localhost:8000/auth/register](http://localhost:8000/auth/register)\n\nAn example of a simple application using Naventum, [click here](https://github.com/ryodevz/naventum-example).\n\n\n\n### Security Vulnerabilities\nIf you discover a security vulnerability within Naventum, please send an e-mail to Naventum Email via [mail.naventum@gmail.com](mailto:mail.naventum@gmail.com). All security vulnerabilities will be promptly addressed.\n\n\n### License\nThe Naventum framework is open-sourced software licensed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaventum%2Fnaventum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaventum%2Fnaventum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaventum%2Fnaventum/lists"}