{"id":36314046,"url":"https://github.com/sciactive/nymph-server","last_synced_at":"2026-01-11T11:00:13.601Z","repository":{"id":27413539,"uuid":"30890513","full_name":"sciactive/nymph-server","owner":"sciactive","description":"(Deprecated) Server side Nymph files.","archived":true,"fork":false,"pushed_at":"2021-08-14T16:23:40.000Z","size":958,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-06-30T23:35:07.012Z","etag":null,"topics":["nymph","nymph-server","php"],"latest_commit_sha":null,"homepage":"http://nymph.io","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sciactive.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":"2015-02-16T21:59:55.000Z","updated_at":"2022-12-11T18:43:31.000Z","dependencies_parsed_at":"2022-09-02T04:41:53.584Z","dependency_job_id":null,"html_url":"https://github.com/sciactive/nymph-server","commit_stats":null,"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/sciactive/nymph-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sciactive%2Fnymph-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sciactive%2Fnymph-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sciactive%2Fnymph-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sciactive%2Fnymph-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sciactive","download_url":"https://codeload.github.com/sciactive/nymph-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sciactive%2Fnymph-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28301250,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T08:21:30.231Z","status":"ssl_error","status_checked_at":"2026-01-11T08:21:26.882Z","response_time":60,"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":["nymph","nymph-server","php"],"created_at":"2026-01-11T11:00:11.846Z","updated_at":"2026-01-11T11:00:13.416Z","avatar_url":"https://github.com/sciactive.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nymph Server - collaborative app data {#mainpage}\n\n[![Build Status](https://img.shields.io/travis/sciactive/nymph-server/master.svg)](http://travis-ci.org/sciactive/nymph-server) [![Latest Stable Version](https://img.shields.io/packagist/v/sciactive/nymph-server.svg)](https://packagist.org/packages/sciactive/nymph-server) [![Open Issues](https://img.shields.io/github/issues/sciactive/nymph-server.svg)](https://github.com/sciactive/nymph-server/issues) [![License](https://img.shields.io/github/license/sciactive/nymph-server.svg)]()\n\nPowerful object data storage and querying for collaborative web apps.\n\n## Deprecation Notice\n\nThe PHP implementation of Nymph/Tilmeld has been deprecated. It will no longer have any new features added. Instead, a new version of Nymph running on Node.js, written entirely in TypeScript will replace the PHP implementation. You can find it over at the [Nymph.js repo](https://github.com/sciactive/nymphjs).\n\n## Installation\n\n### Automatic Setup\n\nThe fastest way to start building a Nymph app is with the [Nymph App Template](https://github.com/hperrin/nymph-template).\n\n### Manual Installation\n\n```sh\ncomposer require sciactive/nymph-server\n```\n\nThis repository is the PHP ORM and REST server. For more information, you can see the [main Nymph repository](https://github.com/sciactive/nymph).\n\n## Usage\n\nFor detailed docs, check out the wiki:\n\n- [Entity Class](https://github.com/sciactive/nymph/wiki/Entity-Class)\n- [Entity Querying](https://github.com/sciactive/nymph/wiki/Entity-Querying)\n- [Extending the Entity Class](https://github.com/sciactive/nymph/wiki/Extending-the-Entity-Class)\n\nHere's an overview:\n\n```php\nrequire 'vendor/autoload.php';\nuse Nymph\\Nymph;\nNymph::configure([\n  'MySQL' =\u003e [\n    'host' =\u003e 'your_db_host',\n    'database' =\u003e 'your_database',\n    'user' =\u003e 'your_user',\n    'password' =\u003e 'your_password'\n  ]\n]);\n\n// You are set up. Now make a class like `MyEntity` and use it.\n\n$myEntity = new MyEntity();\n$myEntity-\u003emyVar = \"myValue\";\n$myEntity-\u003esave();\n\n$allMyEntities = Nymph::getEntities(['class' =\u003e 'MyEntity']);\n```\n\nFor a thorough step by step guide to setting up Nymph on your own server, visit the [Setup Guide](https://github.com/sciactive/nymph/wiki/Setup-Guide).\n\n## API Docs\n\nCheck out the [API Docs in the wiki](https://github.com/sciactive/nymph/wiki/API-Docs).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsciactive%2Fnymph-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsciactive%2Fnymph-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsciactive%2Fnymph-server/lists"}