Home of the Joomla! Content Management System
Go to file
wilsonge a1158ee07f
Merge branch '3.10-dev' into 4.0-dev
2020-12-15 18:17:51 +00:00
.github Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
administrator Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
api [4.0] Successfully remove (#31618) 2020-12-09 15:38:06 +01:00
build Merge commit 'e4e370c' into 4.0-dev 2020-12-15 02:05:14 +00:00
cache [#23165] Make index.html's valid 2011-06-19 13:39:37 +00:00
cli [4.0] Converted copyright statement to standard format (#31504) 2020-11-28 01:33:45 +00:00
components Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
images [blog sample data] New attempt with different images. (#248) 2020-11-22 16:29:03 +01:00
includes [4.0] Converted copyright statement to standard format (#31504) 2020-11-28 01:33:45 +00:00
installation Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
language Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
layouts [4.0] Intro image link [a11y] (#31576) 2020-12-07 10:20:52 +01:00
libraries Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
modules Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
plugins Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
templates [4.0] Cassiopeia component.php (#31646) 2020-12-14 18:34:56 +00:00
tests [4.0][api] articles must be trashed before they can be deleted in the api (#31581) 2020-12-04 21:24:11 +00:00
tmp [#23165] Make index.html's valid 2011-06-19 13:39:37 +00:00
.appveyor.yml Merge commit '5de9975' into 4.0-dev 2020-12-03 00:59:44 +00:00
.drone.yml [4.0] Cleaning up Drone configuration (#31116) 2020-10-23 22:04:25 +02:00
.editorconfig [4.0] [NO CACHE] Enable code style for Vue App Media Manager (#30839) 2020-10-17 01:49:43 +01:00
.gitignore .gitignore cleanup (#30058) 2020-07-08 12:23:51 -07:00
.php_cs.dist [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
LICENSE.txt Revert the license text to the original GPL text as distributed by the FSF 2015-03-01 10:49:27 +00:00
README.md Merge commit 'e4b7024' into 4.0-dev 2020-12-03 00:07:11 +00:00
README.txt [4.0] Converted copyright statement to standard format (#31504) 2020-11-28 01:33:45 +00:00
build.xml [4.0] Namespace JHtml (#28581) 2020-04-11 10:12:48 +01:00
codeception.yml [4.0] Systemtests add timeout option on acceptance.yml (#26559) 2019-10-12 22:01:13 +02:00
composer.json Merge branch '3.10-dev' into 4.0-dev 2020-12-15 18:17:51 +00:00
composer.lock Merge commit 'e4b7024' into 4.0-dev 2020-12-03 00:07:11 +00:00
crowdin.yml Generic INI filetype doesn't work due to missing plural detection (#29118) 2020-05-16 09:35:40 +01:00
htaccess.txt Merge commit '58e0942' into 4.0-dev 2020-12-15 01:36:51 +00:00
index.php [4.0] Converted copyright statement to standard format (#31504) 2020-11-28 01:33:45 +00:00
package-lock.json [4.0] Upstream Security issue (#31632) 2020-12-11 11:52:53 +00:00
package.json [4.0] Upstream Security issue (#31632) 2020-12-11 11:52:53 +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
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

README.md

Joomla! CMS™ Analytics

Build Status

Drone-CI AppVeyor
Build Status Build status

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/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?