{"id":13579364,"url":"https://github.com/thelia/thelia","last_synced_at":"2025-05-14T00:06:42.403Z","repository":{"id":456119,"uuid":"8863081","full_name":"thelia/thelia","owner":"thelia","description":"Thelia is an open source tool for creating e-business websites and managing online content. Repo containing the new major version (v2)","archived":false,"fork":false,"pushed_at":"2025-05-07T14:21:35.000Z","size":110487,"stargazers_count":861,"open_issues_count":84,"forks_count":310,"subscribers_count":68,"default_branch":"main","last_synced_at":"2025-05-07T15:31:53.800Z","etag":null,"topics":["e-commerce","hacktoberfest","mysql","php","symfony","thelia"],"latest_commit_sha":null,"homepage":"http://thelia.net","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thelia.png","metadata":{"files":{"readme":"Readme.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2013-03-18T20:10:36.000Z","updated_at":"2025-04-25T12:58:58.000Z","dependencies_parsed_at":"2025-04-10T02:27:22.123Z","dependency_job_id":null,"html_url":"https://github.com/thelia/thelia","commit_stats":{"total_commits":7506,"total_committers":157,"mean_commits":47.80891719745223,"dds":0.7831068478550494,"last_synced_commit":"9f5b371672af8ff14c2c9698b569777aa26b1771"},"previous_names":[],"tags_count":74,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thelia%2Fthelia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thelia%2Fthelia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thelia%2Fthelia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thelia%2Fthelia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thelia","download_url":"https://codeload.github.com/thelia/thelia/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254043546,"owners_count":22004970,"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":["e-commerce","hacktoberfest","mysql","php","symfony","thelia"],"created_at":"2024-08-01T15:01:38.702Z","updated_at":"2025-05-14T00:06:42.293Z","avatar_url":"https://github.com/thelia.png","language":"PHP","funding_links":[],"categories":["PHP"],"sub_categories":[],"readme":"Readme\n======\n\n## Warning\n### This is the development repository of Thelia. If you want to create a project, please take a look at [thelia/thelia-project](https://github.com/thelia/thelia-project)\n\nIf you want to download a packaged, ready-to-use distribution of the most recent version of Thelia please download [thelia.zip](https://thelia.net/download/thelia.zip)\n\nThelia\n------\n[![Actions Status: test](https://github.com/thelia/thelia/workflows/test/badge.svg?branch=main)](https://github.com/thelia/thelia/actions?query=workflow%3A\"test\")\n[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/thelia/thelia/badges/quality-score.png?s=61e3e04a69bffd71c29b08e5392080317a546716)](https://scrutinizer-ci.com/g/thelia/thelia/)\n![Discord Shield](https://discordapp.com/api/guilds/1067836968689487872/widget.png?style=shield)\n\n[Thelia](https://thelia.net/) is an open source tool for creating e-business websites and managing online content. This software is published under GNU General Public License v3.0.\n\nA repository containing all thelia modules is available at this address : https://github.com/thelia-modules\n\nCompatibility\n------------\n\n|         |   Thelia 2.3    |      Thelia 2.4 |    Thelia 2.5 |\n|---------|:---------------:|----------------:|--------------:|\n| PHP     | 5.5 5.6 7.0 7.1 | 7.0 7.1 7.2 7.3 | 8.0.2 8.1 8.2 |\n| MySQL   |     5.5 5.6     |     5.5 5.6 5.7 |   5.6 5.7 8.0 |\n| Symfony |       2.8       |             2.8 |       6.0 6.3 |\n\nRequirements\n------------\n\n* PHP\n    * Required extensions :\n        * PDO_Mysql\n        * openssl\n        * intl\n        * gd\n        * curl\n        * dom\n    * safe_mode off\n    * memory_limit at least 128M, preferably 256.\n    * post\\_max\\_size 20M\n    * upload\\_max\\_filesize 2M\n    * date.timezone must be defined\n* Web Server Apache 2 or Nginx\n\n\n### MySQL 5.6\n\nAs of MySQL 5.6, default configuration sets the sql_mode value to\n\n```\nSTRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION\n```\n\nThis 'STRICT_TRANS_TABLES' configuration results in SQL errors when no default value is defined on NOT NULL columns and the value is empty or invalid.\n\nYou can edit this default config in ` /etc/my.cnf ` and change the sql_mode to remove the STRICT_TRANS_TABLES part\n\n```\n[mysqld]\nsql_mode=NO_ENGINE_SUBSTITUTION\n```\n\nAssuming your sql_mode is the default one, you can change the value directly on the run by running the following SQL Command\n\n```sql\nSET @@GLOBAL.sql_mode='NO_ENGINE_SUBSTITUTION', @@SESSION.sql_mode='NO_ENGINE_SUBSTITUTION'\n```\n\nFor more information on sql_mode you can consult the [MySQL doc](https://dev.mysql.com/doc/refman/5.0/fr/server-sql-mode.html \"sql Mode\")\n\n## Archive builders\nThelia's archive builder's needs external libraries.\nFor zip archives, you need PECL zip. See [PHP Doc](https://php.net/manual/en/zip.installation.php)\n\nFor tar archives, you need PECL phar. Moreover, you need to deactivate php.ini option \"phar.readonly\":\n```ini\nphar.readonly = Off\n```\n\nFor tar.bz2 archives, you need tar's dependencies and the extension \"bzip2\". See [PHP Doc](https://php.net/manual/fr/book.bzip2.php)\n\nFor tar.gz archives, you need tar's dependencies and the extension \"zlib\". See [PHP Doc](https://fr2.php.net/manual/fr/book.zlib.php)\n\n## Download Thelia 2 and install its dependencies\n\nYou can get the sources from git and then let composer install dependencies, or use composer to install the whole thelia project into a specific directory\n\n### Using git for download and composer for dependencies\n\n``` bash\n$ git clone --recursive https://github.com/thelia/thelia path\n$ cd path\n$ git checkout 2.5.5\n$ curl -sS https://getcomposer.org/installer | php\n$ php composer.phar install\n```\n\n### Using composer for both download and dependencies\n\n``` bash\n$ curl -sS https://getcomposer.org/installer | php\n$ php composer.phar create-project thelia/thelia path/ 2.5.5\n```\n\nIf something goes wrong during the install process, you can restart Thelia install wizard with\nthe following command : `php composer.phar run-script post-create-project-cmd`\n\n## Install it\n\nYou can install Thelia by different way\n\n### Using install wizard\n\nInstalling thelia with the web install wizard allow to create an administrator, add some informations about your shop, etc\n\nFirst of all, you have to configure a vhost as describe in [configuration](https://doc.thelia.net/en/documentation/configuration.html) section.\n\nThe install wizard in accessible with your favorite browser :\n\n``` bash\nhttps://yourdomain.tld/[/subdomain_if_needed]/install\n```\n\nFor example, I have thelia downloaded at https://thelia.net and my vhost is correctly configured, I have to reach this address :\n\n``` bash\nhttps://thelia.net/install\n```\n\n### Using cli tools\n\n``` bash\n$ php Thelia thelia:install\n```\n\nYou just have to follow all instructions.\n\n### Docker and docker compose\n\nThis repo contains all the configuration needed to run Thelia with docker and docker-compose.\nWarning, this docker configuration is not ready for production.\n\nIt requires obviously [docker](https://docker.com/) and [docker-compose](https://docs.docker.com/compose/)\n\nPlease, follow the official documentation to install docker and docker-compose on your system :\nhttps://doc.thelia.net/docs/getting_started/docker\n\n\nContribute\n----------\n\nSee the documentation : https://doc.thelia.net/docs/contribute\n\n\nIf you submit modifications that adds new data or change the structure of the database, take a look to https://doc.thelia.net/docs/contribute#sql-scripts-modification\n\n\n## Community\n\nJoin the conversation and help the community :\n\n[Twitter](https://github.com/thelia/thelia)\n[Discord](https://discord.gg/YgwpYEE3y3)\n[StackOverflow](https://stackoverflow.com/questions/tagged/thelia)\n[Forum](https://forum.thelia.net/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthelia%2Fthelia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthelia%2Fthelia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthelia%2Fthelia/lists"}