{"id":21852660,"url":"https://github.com/proofoftom/commerce-flynn","last_synced_at":"2026-05-06T10:35:06.105Z","repository":{"id":85107108,"uuid":"60397807","full_name":"proofoftom/commerce-flynn","owner":"proofoftom","description":null,"archived":false,"fork":false,"pushed_at":"2016-06-04T09:42:52.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-25T22:10:28.745Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/proofoftom.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}},"created_at":"2016-06-04T07:04:33.000Z","updated_at":"2016-06-04T09:05:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"954e8224-87d5-42c1-b6b8-685c86b7ef59","html_url":"https://github.com/proofoftom/commerce-flynn","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/proofoftom/commerce-flynn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proofoftom%2Fcommerce-flynn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proofoftom%2Fcommerce-flynn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proofoftom%2Fcommerce-flynn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proofoftom%2Fcommerce-flynn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/proofoftom","download_url":"https://codeload.github.com/proofoftom/commerce-flynn/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proofoftom%2Fcommerce-flynn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32689232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"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":[],"created_at":"2024-11-28T01:17:57.902Z","updated_at":"2026-05-06T10:35:06.098Z","avatar_url":"https://github.com/proofoftom.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Commerce 2.x project template\n\n[![Build Status](https://travis-ci.org/drupalcommerce/project-base.svg?branch=8.x)](https://travis-ci.org/drupalcommerce/project-base)\n\nUse [Composer](https://getcomposer.org/) to get Drupal + Commerce 2.x with all dependencies.\n\nBased on [drupal-composer/drupal-project](https://github.com/drupal-composer/drupal-project).\n\n## Usage\n\nFirst you need to [install composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx).\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 drupalcommerce/project-base some-dir --stability dev --no-interaction\n```\n\nDone! Use `composer require ...` to download additional modules and themes:\n\n```\ncd some-dir\ncomposer require \"drupal/devel:8.1.x-dev\"\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\n* Drupal is installed in the `web` directory.\n* Modules (packages of type `drupal-module`) are placed in `web/modules/contrib/`\n* Theme (packages of type `drupal-theme`) are placed in `web/themes/contrib/`\n* Profiles (packages of type `drupal-profile`) are placed in `web/profiles/contrib/`\n* Creates default writable versions of `settings.php` and `services.yml`.\n* Creates the `sites/default/files` directory.\n* Latest version of DrupalConsole is installed locally for use at `vendor/bin/drupal`.\n\n## Updating Drupal Core\n\nThis project will attempt to keep all of your Drupal Core files up-to-date; the\nproject [drupal-composer/drupal-scaffold](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 modified files are updated in a\nnew release of Drupal core.\n\nFollow the steps below to update your core files.\n\n1. Run `composer update drupal/core`.\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\n## FAQ\n\n### Should I commit the contrib modules I download\n\nComposer recommends **no**. They provide [argumentation against but also\nworkrounds if a project decides to do it anyway](https://getcomposer.org/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md).\n\n### How can I apply patches to downloaded modules?\n\nIf you need to apply patches (depending on the project being modified, a pull\nrequest is often a better solution), you can do so with the\n[composer-patches](https://github.com/cweagans/composer-patches) plugin.\n\nTo add a patch to drupal module foobar insert the patches section in the extra\nsection of composer.json:\n```json\n\"extra\": {\n    \"patches\": {\n        \"drupal/foobar\": {\n            \"Patch description\": \"URL to patch\"\n        }\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproofoftom%2Fcommerce-flynn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproofoftom%2Fcommerce-flynn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproofoftom%2Fcommerce-flynn/lists"}