Home of the Joomla! Content Management System
Go to file
Wojciech Smoliński 449cbafac2
Use 4.2-dev in core translation workflow (#38698)
2022-09-06 10:59:03 +01:00
.github Use 4.2-dev in core translation workflow (#38698) 2022-09-06 10:59:03 +01:00
administrator Change bulk unarchive action to unpublish. (#38434) 2022-09-06 09:08:19 +01:00
api Reset to dev 2022-09-02 21:48:45 +02:00
build media edit plugins legend (#38362) 2022-09-05 13:20:03 +01:00
cache
cli Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
components Codestyle indent (#38399) 2022-09-05 12:15:06 +01:00
images [blog sample data] New attempt with different images. (#248) 2020-11-22 16:29:03 +01:00
includes Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
installation Supported font formats mismatch (#38465) 2022-09-06 08:08:21 +01:00
language Reset to dev 2022-09-02 21:48:45 +02:00
layouts Codestyle indent (#38399) 2022-09-05 12:15:06 +01:00
libraries respect the language cascade (#38578) 2022-09-06 09:06:44 +01:00
modules Codestyle indent (#38399) 2022-09-05 12:15:06 +01:00
plugins Fix PHP notices in CLI coming from the WebAuthn plugin (#38340) 2022-09-05 12:16:56 +01:00
templates Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
tests Removing obsolete PHP setting (#38528) 2022-08-31 17:38:10 +01:00
tmp
.appveyor.yml Refactored WebAuthn with Windows Hello support (#37910) 2022-06-27 19:16:07 +02:00
.drone.yml PSR12 2022-06-27 20:22:40 +02:00
.editorconfig Use 4.2-dev in core translation workflow (#38698) 2022-09-06 10:59:03 +01:00
.gitignore Fix/38233 webauth preload fido (#38664) 2022-09-02 21:37:25 +02:00
.php-cs-fixer.dist.php [4.0] php-cs-fixer v3.0 Support (#33908) 2021-11-01 23:54:05 +00:00
CODE_OF_CONDUCT.md
LICENSE.txt
README.md [4.2] build badges (#38232) 2022-07-05 17:05:58 +02:00
README.txt Update README.md (#36811) 2022-01-31 16:57:16 +01:00
build.xml Update version to 4.2-dev 2022-01-23 12:10:17 +01:00
codeception.yml
composer.json Fix/38233 webauth preload fido (#38664) 2022-09-02 21:37:25 +02:00
composer.lock Add bcmath_compat polyfill for servers without BCmath / GMP support (#38488) 2022-08-17 20:12:17 +02:00
htaccess.txt [4.x] htaccess gzip info (#38084) 2022-06-18 11:43:05 +02:00
index.php Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
package-lock.json [4.2] codemirror update (#38156) 2022-07-03 16:14:27 +02:00
package.json [4.2] [GSoC 21] Keyboard-Shortcut Plugin (#38092) 2022-06-22 16:42:52 +02:00
phpunit-pgsql.xml.dist
phpunit.xml.dist Revert "[4] Rename phpunit test folders to align with the apps structure (#36483)" (#36498) 2021-12-30 21:46:31 +00:00
renovate.json Removing 3.10-dev from renovate.json (#38609) 2022-09-06 11:13:09 +02:00
robots.txt.dist Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
ruleset.xml [4.2] Ruleset.xml (#38231) 2022-07-05 15:22:09 +02:00
web.config.txt Fix API application routing (#29303) 2020-05-31 20:22:31 +01:00

README.md

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 https://github.com/joomla/joomla-cms.git
  • Go to the joomla-cms folder:
cd joomla-cms
  • Go to the 4.2-dev branch:
git checkout 4.2-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?