29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-25 23:02:55 +00:00
Home of the Joomla! Content Management System
Go to file
2021-12-29 01:39:17 +00:00
.github Update cacert-update.yml Action (#35956) 2021-11-02 09:59:56 +00:00
administrator Removed unused code (#36403) 2021-12-29 01:21:42 +00:00
api [4.0] Remove all references to old JPrefixed Class in /administrator/ (#36428) 2021-12-29 01:15:51 +00:00
build [4.0] build.js instructions (#36390) 2021-12-27 13:58:50 -08:00
cache [#23165] Make index.html's valid 2011-06-19 13:39:37 +00:00
cli [4] /s/host/command line (#36416) 2021-12-29 01:17:34 +00:00
components Remove unused import (#36199) 2021-12-23 11:47:03 -08:00
images [blog sample data] New attempt with different images. (#248) 2020-11-22 16:29:03 +01:00
includes [4.0] Remove all references to old JPrefixed Class in /administrator/ (#36428) 2021-12-29 01:15:51 +00:00
installation Return value type is not compatible with declared (#36412) 2021-12-29 01:19:11 +00:00
language Reset to dev 2021-12-13 23:32:17 +00:00
layouts fix @todo tags (#36418) 2021-12-26 07:30:04 -08:00
libraries Return value type is not compatible with declared (#36412) 2021-12-29 01:19:11 +00:00
modules [4.0] Replace input with button (#36386) 2021-12-29 01:39:17 +00:00
plugins Return value type is not compatible with declared (#36412) 2021-12-29 01:19:11 +00:00
templates [4.0] Replace input with button (#36386) 2021-12-29 01:39:17 +00:00
tests Fix php 8.2 tests (#36466) 2021-12-28 16:53:16 +01:00
tmp [#23165] Make index.html's valid 2011-06-19 13:39:37 +00:00
.appveyor.yml [3.x] Update download URL of composer for appveyor (#33508) 2021-05-03 17:06:27 +02:00
.drone.yml Add php 8.2 to ci 2021-12-28 15:13:29 +01:00
.editorconfig Merge branch '3.10-dev' into 4.0-dev 2021-01-07 01:44:02 +00:00
.gitignore [4.0] php-cs-fixer v3.0 Support (#33908) 2021-11-01 23:54:05 +00:00
.php-cs-fixer.dist.php [4.0] php-cs-fixer v3.0 Support (#33908) 2021-11-01 23:54:05 +00:00
build.xml [4.0] Namespace JHtml (#28581) 2020-04-11 10:12:48 +01:00
CODE_OF_CONDUCT.md Joomla! 3.9.14 2020-03-04 18:50:06 +00:00
codeception.yml [4.0] Systemtests add timeout option on acceptance.yml (#26559) 2019-10-12 22:01:13 +02:00
composer.json [4] composer update maximebf/debugbar to 1.17 (#36431) 2021-12-27 11:44:48 +00:00
composer.lock [4] composer update maximebf/debugbar to 1.17 (#36431) 2021-12-27 11:44:48 +00:00
htaccess.txt Merge commit 'f2b6d58' into 4.0-dev 2021-06-14 01:00:39 +01:00
index.php Improvements to fatal error page generation (#31743) 2021-02-25 16:32:37 +00:00
LICENSE.txt Revert the license text to the original GPL text as distributed by the FSF 2015-03-01 10:49:27 +00:00
package-lock.json [4.0] Update bootstrap to 5.1.3 (#36367) 2021-12-21 18:13:18 +00:00
package.json [4.0] Update npm dependencies (#36295) 2021-12-20 23:06:31 +00:00
phpunit-pgsql.xml.dist [4.0] Add an Integration test suite stub (#25118) 2019-07-11 23:48:37 +01:00
phpunit.xml.dist [4.0] Add an Integration test suite stub (#25118) 2019-07-11 23:48:37 +01:00
README.md Remove non functioning Third Party GA Beacon (#35284) 2021-08-22 00:36:34 +02:00
README.txt [4.0] Translation links (#34688) 2021-07-02 15:10:53 +01:00
robots.txt.dist Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
web.config.txt Fix API application routing (#29303) 2020-05-31 20:22:31 +01:00

Joomla! CMS™

Build Status

Drone-CI AppVeyor PHP Node npm
Build Status Build status PHP node-lts npm

Overview

What is Joomla?

  • Joomla! is a Content Management System (CMS) which enables you to build websites and powerful online applications.
  • It is a simple and powerful web server application which requires a server with PHP and either MySQL or PostgreSQL to run. You can find full technical requirements here.
  • Joomla! is free and Open Source software distributed under the GNU General Public License version 2 or later.

Looking for an installable package?

Joomla is not installable out of the box from this repository, please use:

How to get a working installation from the source

For detailed instructions please visit https://docs.joomla.org/Special:MyLanguage/J4.x:Setting_Up_Your_Local_Environment

You will need:

Steps to setup the local environment:

  • Clone the repository:
git clone git@github.com:joomla/joomla-cms.git
  • Go to the joomla-cms folder:
cd joomla-cms
  • Go to the 4.0-dev branch:
git checkout 4.0-dev
  • Install all the needed composer packages:
composer install
  • Install all the needed npm packages:
npm ci

Things to be aware of when pulling: Joomla creates a cache of the namespaces of its extensions in JOOMLA_ROOT/administrator/cache/autoload_psr4.php. If extensions are created, deleted or removed in git then this file needs to be recreated. You can simply delete the file and it will be regenerated on the next call to Joomla.

Do you want to improve Joomla?