{"id":21685158,"url":"https://github.com/havvg/sismofinder","last_synced_at":"2025-06-20T19:36:03.215Z","repository":{"id":136755436,"uuid":"2462009","full_name":"havvg/SismoFinder","owner":"havvg","description":"A wrapper for locating Sismo project configuration.","archived":false,"fork":false,"pushed_at":"2012-12-09T22:33:57.000Z","size":574,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T07:52:12.554Z","etag":null,"topics":["ci","continuous-integration","php","sismo"],"latest_commit_sha":null,"homepage":"http://toni.uebernickel.info/SismoFinder/","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/havvg.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":"2011-09-26T17:25:19.000Z","updated_at":"2020-03-24T04:45:29.000Z","dependencies_parsed_at":"2023-06-26T01:57:49.144Z","dependency_job_id":null,"html_url":"https://github.com/havvg/SismoFinder","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/havvg/SismoFinder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/havvg%2FSismoFinder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/havvg%2FSismoFinder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/havvg%2FSismoFinder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/havvg%2FSismoFinder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/havvg","download_url":"https://codeload.github.com/havvg/SismoFinder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/havvg%2FSismoFinder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261005223,"owners_count":23095791,"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":["ci","continuous-integration","php","sismo"],"created_at":"2024-11-25T16:18:27.117Z","updated_at":"2025-06-20T19:35:58.206Z","avatar_url":"https://github.com/havvg.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SismoFinder\n\n[![Build Status](https://secure.travis-ci.org/havvg/SismoFinder.png)](http://travis-ci.org/havvg/SismoFinder)\n\n`SismoFinder` is a simple wrapper around the configuration file of `Sismo`.\nThere are two major benefits when using SismoFinder as a replacement or addition to your Sismo configuration file.\n\nThe actual project's configuration for a Sismo project is saved within the project itself.\nThus there is no need to setup each new project within Sismo.\n\nThe configuration for Sismo is shared among the collaborators of the project.\n\n## Installation\n\nSee [INSTALL.md](INSTALL.md) for instructions on how to install `SismoFinder`.\n\n## Configuration\n\n`SismoFinder` by default looks for two files `sismo.config.php` and if not found `sismo.config.php.dist`.\n\n* Package the `sismo.config.php.dist` within your project.\n* Add the `sismo.config.php` to your `.gitignore`.\n\n### Example SismoFinder configuration file\n\nThis is a very basic example, how a distributed project configuration may look like,\nsee [Sismo README](https://github.com/fabpot/Sismo/blob/master/README.rst) for more details.\n\n```php\n\u003c?php // /path/to/workspace/your-project/sismo.config.php.dist\n\nreturn new Sismo\\Project('Your Project (local)', __DIR__);\n```\n\nFor more configuration examples take a look into the `doc` folder.\n\n## Usage\n\nAn example workspace at `/Users/havvg/Web Development/`.\nThere is no need to include or require anything `Sismo` already provides, as the configuration is run inside of `Sismo`.\nFor example, the `UniversalClassLoader` is defined.\n\nThe projects `SismoFinder` retrieves are easily accessible for further modifications.\n\n### Replacement\n\n```php\n\u003c?php // ~/.sismo/config.php\n\n$loader = new Symfony\\Component\\ClassLoader\\UniversalClassLoader();\n$loader-\u003eregisterNamespaces(array(\n    'SismoFinder' =\u003e '/Users/havvg/Web Development/SismoFinder/src',\n));\n$loader-\u003eregister();\n\n$finder = new SismoFinder\\Finder();\n$finder-\u003eaddWorkspace('/Users/havvg/Web Development');\n\nreturn $finder-\u003egetProjects();\n```\n\n### Addition\n\n```php\n\u003c?php // ~/.sismo/config.php\n\n$loader = new Symfony\\Component\\ClassLoader\\UniversalClassLoader();\n$loader-\u003eregisterNamespaces(array(\n    'SismoFinder' =\u003e '/Users/havvg/Web Development/SismoFinder/src',\n));\n$loader-\u003eregister();\n\n// create a Growl notifier (for OSX)\n$notifier = new Sismo\\Notifier\\GrowlNotifier('');\n\n$finder = new SismoFinder\\Finder();\n$finder-\u003eaddWorkspace('/Users/havvg/Web Development');\n\n$projects = $finder-\u003egetProjects();\n\n// A project outside of all workspaces\n$projects[] = new Sismo\\Project('Project D (local)', '/Users/havvg/Project D/', $notifier);\n\nreturn $projects;\n```\n\nFor more usage examples, see the examples in the `doc` folder.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhavvg%2Fsismofinder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhavvg%2Fsismofinder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhavvg%2Fsismofinder/lists"}