{"id":50819413,"url":"https://github.com/robertoperuzzo/commerce-kickstart-project","last_synced_at":"2026-06-13T12:31:57.122Z","repository":{"id":322659292,"uuid":"1089397172","full_name":"robertoperuzzo/commerce-kickstart-project","owner":"robertoperuzzo","description":"Drupal Commerce demo + AI features","archived":false,"fork":false,"pushed_at":"2025-11-12T18:44:39.000Z","size":38992,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-12T19:08:27.108Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robertoperuzzo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-11-04T09:37:32.000Z","updated_at":"2025-11-12T17:08:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/robertoperuzzo/commerce-kickstart-project","commit_stats":null,"previous_names":["robertoperuzzo/commerce-kickstart-project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/robertoperuzzo/commerce-kickstart-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertoperuzzo%2Fcommerce-kickstart-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertoperuzzo%2Fcommerce-kickstart-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertoperuzzo%2Fcommerce-kickstart-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertoperuzzo%2Fcommerce-kickstart-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robertoperuzzo","download_url":"https://codeload.github.com/robertoperuzzo/commerce-kickstart-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertoperuzzo%2Fcommerce-kickstart-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34285190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2026-06-13T12:31:56.439Z","updated_at":"2026-06-13T12:31:57.111Z","avatar_url":"https://github.com/robertoperuzzo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Centarro Commerce Kickstart 5.x project template\n\nUse [Composer](https://getcomposer.org/) to get Drupal + Centarro Commerce Kickstart 4.0.x.\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 centarro/commerce-kickstart-project kickstart\n```\n\nDone! Use `composer require ...` to download additional modules and themes. For example, if you want to install the\ncertified Centarro modules you'd change into the target directory and require `centarro/certified-projects`:\n\n```\ncd kickstart\ncomposer require centarro/certified-projects\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## Demo content\n\nStarting from Commerce Kickstart 5, this project includes the\n[Kickstart Demo](https://www.drupal.org/project/commerce_kickstart_demo) recipe by default. The full demo is designed\nspecifically for evaluating Drupal Commerce or Commerce Kickstart and should only be installed on new Kickstart\ninstances. It is **not intended** for existing Drupal installations. Installing the Kickstart Demo is optional.\n\nIf you don't need the demo, you can remove it using the following command:\n\n```bash\ncd kickstart\ncomposer remove drupal/commerce_kickstart_demo\n```\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* Recipes (packages of type `drupal-recipe`) are placed in `recipes/`\n* Creates default writable versions of `settings.php` and `services.yml`.\n* Creates the `web/sites/default/files` directory.\n* Latest version of DrupalConsole is installed locally for use at `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/core-composer-scaffold](https://github.com/drupal/core-composer-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 drupal/core-dev --with-dependencies` to update Drupal Core and its dependencies.\n2. 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## Generate composer.json from existing project\n\nWith using [the \"Composer Generate\" drush extension](https://www.drupal.org/project/composer_generate)\nyou can now generate a basic `composer.json` file from an existing project. Note\nthat the generated `composer.json` might differ from this project's file.\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### Should I commit the scaffolding files?\n\nThe [Drupal Composer Scaffold](https://github.com/drupal/core-composer-scaffold) plugin can download the scaffold files (like\nindex.php, update.php, …) to the web/ directory of your project. If you have not customized those files you could choose\nto not check them into your version control system (e.g. git). If that is the case for your project it might be\nconvenient to automatically run the drupal-scaffold plugin after every install or update of your project. You can\nachieve that by registering `@composer drupal:scaffold` as post-install and post-update command in your composer.json:\n\n```json\n\"scripts\": {\n    \"post-install-cmd\": [\n        \"@composer drupal:scaffold\",\n        \"...\"\n    ],\n    \"post-update-cmd\": [\n        \"@composer drupal:scaffold\",\n        \"...\"\n    ]\n},\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\n### How can I add js/css libraries using composer.json?\n\nIt is possible to install JavaScript libraries with Composer using custom packages as this project does, downloading the packages outside of the docroot and copying over just the necessary files into the Drupal libraries directory. We previously relied on asset-packagist to do this but had to change our approach after the repository went defunct. Refer to [this tutorial](https://ryanszrama.com/blog/04-18-2022/replace-asset-packagist-custom-package-repositories) for more information.\n\n### How do I specify a PHP version ?\n\nThis project supports PHP 8.3 as minimum version (see [Drupal PHP requirements](https://www.drupal.org/docs/system-requirements/php-requirements)), however it's possible that a `composer update` will upgrade some package that will then require a newer version.\n\nTo prevent this you can add this code to specify the PHP version you want to use in the `config` section of `composer.json`:\n```json\n\"config\": {\n    \"sort-packages\": true,\n    \"platform\": {\n        \"php\": \"7.1.21\"\n    }\n},\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertoperuzzo%2Fcommerce-kickstart-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertoperuzzo%2Fcommerce-kickstart-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertoperuzzo%2Fcommerce-kickstart-project/lists"}