29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-20 11:05:08 +00:00
Home of the Joomla! Content Management System
Go to file
2023-04-06 08:53:10 +02:00
.github Merge branch '4.3-dev' into 4.4-dev 2023-03-26 18:00:02 +02:00
.phan
administrator Get ordering from model in module controller (#37635) 2023-04-04 15:23:03 +02:00
api Joomla! 4.3.0 RC 2 2023-04-02 02:39:18 -04:00
build Merge branch '4.3-dev' into 4.4-dev 2023-04-03 09:18:16 +02:00
cache
cli
components [4.4] Converting from File::exists() to is_file() (#40113) 2023-03-15 17:25:31 +01:00
images
includes
installation [4.4] Converting File class from CMS to framework package (#40257) 2023-04-03 14:58:48 +02:00
language Joomla! 4.3.0 RC 2 2023-04-02 02:39:18 -04:00
layouts
libraries [4.4] Phan: MVC classes (#39985) 2023-04-05 10:05:16 +02:00
modules Convert mod_articles_category to new structure (#39527) 2023-04-03 16:04:21 +02:00
plugins Phan: Fixing reference to Exceptions (#40027) 2023-04-06 08:53:10 +02:00
templates
tests Cypress test to display tags in frontsite (#40334) 2023-04-06 08:48:05 +02:00
tmp
.appveyor.yml Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
.drone.yml Set a higher timeout for cypress verification (#40223) 2023-03-29 08:58:42 +02:00
.editorconfig
.gitignore Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
.php-cs-fixer.dist.php
build.xml
CODE_OF_CONDUCT.md
composer.json Merge branch '4.3-dev' into 4.4-dev 2023-03-22 07:43:52 +01:00
composer.lock Merge branch '4.3-dev' into 4.4-dev 2023-03-22 07:43:52 +01:00
cypress.config.dist.js Convert installer plugins to service providers (#40146) 2023-03-22 14:47:56 +01:00
htaccess.txt
index.php Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
LICENSE.txt
package-lock.json Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
package.json Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +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
README.txt
renovate.json
robots.txt.dist
ruleset.xml Guided tours removal of tour permissions (#40228) 2023-03-31 17:03:15 -05: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?