29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-17 17:44:57 +00:00
Home of the Joomla! Content Management System
Go to file
2024-03-03 03:11:44 +01:00
.github Prefix PR for major branch 2024-01-22 14:02:09 +00:00
.phan
administrator Update plg_system_jooa11y.ini (#42940) 2024-03-03 03:11:44 +01:00
api Revert to dev 2024-02-20 16:16:39 +01:00
build [4.4] Fix help icon not opening help screen (#42820) 2024-02-22 13:37:00 +01:00
cache
cli Add shebang to cli/joomla.php and make it executable (#40351) 2023-04-11 08:08:07 +02:00
components Joomla 4.4.3 Stable 2024-02-19 15:44:22 +01:00
images
includes Joomla 4.4.3 Stable 2024-02-19 15:44:22 +01:00
installation [4.x] Translation Update (#42873) 2024-02-24 15:42:29 +01:00
language alphabetical sorting (#42855) 2024-02-23 08:24:39 +01:00
layouts [4.4] Fix showon for list field (no multiple) (#39546) 2024-03-01 07:18:24 +01:00
libraries Use a sensible default if none is found (#36692) 2024-02-28 18:58:22 +01:00
modules [4] Module 'Feed Display': deprecated Notice (#42803) 2024-02-22 15:17:20 +01:00
plugins [4.x] Allow folders with image extensions in media manager (#42874) 2024-02-24 20:47:51 +01:00
templates [4.x] Translation Update (#42873) 2024-02-24 15:42:29 +01:00
tests Added an api test for site menu items (#42708) 2024-01-25 17:45:51 +01:00
tmp
.appveyor.yml [4.4] Appveyor: Raise MySQL to version 8.0 (#42271) 2023-11-02 12:50:05 +01:00
.drone.yml Update the signature for #42545 (#42552) 2023-12-20 14:51:53 +01:00
.editorconfig
.git-blame-ignore-revs Ignore code style changes in blame (#40642) 2023-05-24 12:16:27 -04:00
.gitignore Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
.php-cs-fixer.dist.php Alpha order imports (#41428) 2023-08-23 12:06:44 +02:00
build.xml [4.4] set the correct version number for 4.4 (#40071) 2023-03-10 16:13:45 +01:00
CODE_OF_CONDUCT.md
composer.json composer-patch1 (#42849) 2024-02-22 19:48:23 +01:00
composer.lock composer-patch1 (#42849) 2024-02-22 19:48:23 +01:00
cypress.config.dist.js Edit/cypress port (#40764) 2023-06-14 16:18:18 +02:00
htaccess.txt
index.php
LICENSE.txt
package-lock.json [4.4] TinyMCE 5.10.9 (#42359) 2023-11-23 10:08:43 +01:00
package.json Revert to dev 2024-02-20 16:16:39 +01:00
phpunit-pgsql.xml.dist Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
phpunit.xml.dist Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
README.md [4.4] Node 20 (#42331) 2023-11-11 16:20:30 +01:00
README.txt [4.4] set the correct version number for 4.4 (#40071) 2023-03-10 16:13:45 +01:00
renovate.json
robots.txt.dist
ruleset.xml [4.4] Remove obsolete exclude pattern from ruleset.xml for phpcs (#40277) 2023-05-23 16:15:01 +02:00
web.config.txt

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.4-dev branch:
git checkout 4.4-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?