{"id":23561966,"url":"https://github.com/jfeltkamp/rules-finder-project","last_synced_at":"2026-03-07T15:32:15.023Z","repository":{"id":45903461,"uuid":"514909919","full_name":"jfeltkamp/rules-finder-project","owner":"jfeltkamp","description":"Project template for a new RulesFinder installation.","archived":false,"fork":false,"pushed_at":"2025-05-27T16:34:00.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"1.0.x","last_synced_at":"2025-10-19T01:30:16.005Z","etag":null,"topics":["composer","drupal"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jfeltkamp.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-17T17:25:25.000Z","updated_at":"2025-05-27T16:34:04.000Z","dependencies_parsed_at":"2024-11-15T22:30:13.049Z","dependency_job_id":"f139cf4f-89a3-430c-a5cc-3688fad18f05","html_url":"https://github.com/jfeltkamp/rules-finder-project","commit_stats":{"total_commits":17,"total_committers":2,"mean_commits":8.5,"dds":0.3529411764705882,"last_synced_commit":"c02a92b1ef2f80060c8c5124204e9ac5110d3b63"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jfeltkamp/rules-finder-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfeltkamp%2Frules-finder-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfeltkamp%2Frules-finder-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfeltkamp%2Frules-finder-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfeltkamp%2Frules-finder-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jfeltkamp","download_url":"https://codeload.github.com/jfeltkamp/rules-finder-project/tar.gz/refs/heads/1.0.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfeltkamp%2Frules-finder-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30219541,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T14:02:48.375Z","status":"ssl_error","status_checked_at":"2026-03-07T14:02:43.192Z","response_time":53,"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":["composer","drupal"],"created_at":"2024-12-26T16:14:33.994Z","updated_at":"2026-03-07T15:32:14.975Z","avatar_url":"https://github.com/jfeltkamp.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Composer template for Drupal RulesFinder projects\n\nThis project template should provide a kickstart for managing your site\ndependencies with [Composer](https://getcomposer.org/).\n\n## Usage\n\nFirst you need to install [Composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx) and [Git](https://git-scm.com).\n\n\u003e Note: The instructions below refer to the [global composer installation](https://getcomposer.org/doc/00-intro.md#globally).\nYou might need to replace `composer` with `php composer.phar` (or similar) \nfor your setup.\n\nAfter that you can create the project:\n\n```\ncomposer create-project jfeltkamp/rules-finder-project -s dev \u003cmy_project_name\u003e\n```\n\nThe `composer create-project` command passes ownership of all files to the \nproject that is created. You should create a new git repository, and commit \nall files not excluded by the .gitignore file.\n\n## What does the template do?\n\nWhen installing the given `composer.json` some tasks are taken care of:\n\n* Drupal will be installed in the `docroot`-directory.\n* Autoloader is implemented to use the generated composer autoloader in `vendor/autoload.php`,\n  instead of the one provided by Drupal (`docroot/vendor/autoload.php`).\n* Modules (packages of type `drupal-module`) will be placed in `docroot/modules/contrib/`\n* Theme (packages of type `drupal-theme`) will be placed in `docroot/themes/contrib/`\n* Profiles (packages of type `drupal-profile`) will be placed in `docroot/profiles/contrib/`\n* Downloads Drupal scaffold files such as `index.php`, or `.htaccess`\n* Creates `sites/default/files`-directory.\n* Latest version of drush is installed locally for use at `bin/drush`.\n* Latest version of DrupalConsole is installed locally for use at `bin/drupal`.\n\n## Installing RulesFinder\n\nCreate project will install RulesFinder into the docroot direcrory inside of RulesFinder. You can now install RulesFinder as you would with any Drupal 9 site. See: [Drupal installation guide](https://www.drupal.org/node/1839310).\n \n## Updating RulesFinder\n\nTo update RulesFinder, Drupal or any module to the newest version, constrained by the specified version in `composer.json`, execute `composer update`. This command will check every dependency for a new version, downloads it and updates the `composer.lock` accordingly.\nAfter that you can run `drush updb` in the docroot folder to update the database of your site.\n\n### File update\n\nThis project will attempt to keep all of your RulesFinder and drupal core files up-to-date; the \nproject [drupal/core-dev](https://github.com/drupal-composer/drupal-scaffold) \nis used to ensure that your scaffold files are updated every time drupal/core is \nupdated. If you customize any of the \"scaffolding\" files (commonly .htaccess), \nyou may need to merge conflicts if any of your modfied files are updated in a \nnew release of Drupal core.\n\nFollow the steps below to update your RulesFinder files.\n\n1. Run `composer update drupal/rules_finder`\n1. Run `git diff` to determine if any of the scaffolding files have changed. \n   Review the files for any changes and restore any customizations to \n  `.htaccess` or `robots.txt`.\n1. Commit everything all together in a single commit, so `web` will remain in\n   sync with the `core` when checking out branches or running `git bisect`.\n1. In the event that there are non-trivial conflicts in step 2, you may wish \n   to perform these steps on a branch, and use `git merge` to combine the \n   updated core files with your customized files. This facilitates the use \n   of a [three-way merge tool such as kdiff3](http://www.gitshah.com/2010/12/how-to-setup-kdiff-as-diff-tool-for-git.html). This setup is not necessary if your changes are simple; \n   keeping all of your modifications at the beginning or end of the file is a \n   good strategy to keep merges easy.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfeltkamp%2Frules-finder-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjfeltkamp%2Frules-finder-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfeltkamp%2Frules-finder-project/lists"}