Home of the Joomla! Content Management System
Go to file
Richard Fath 3e0bac3c9e
[4.4] Remove obsolete exclude pattern from ruleset.xml for phpcs (#40277)
* Remove obsolete exclude pattern from ruleset.xml

* Remove obsolete exclude patterns for content plugins
2023-05-23 16:15:01 +02:00
.github Merge branch '4.3-dev' into 4.4-dev 2023-04-12 22:33:44 +02:00
.phan [4.3] Adding phan static code analyser (#39002) 2022-10-21 12:19:30 +02:00
administrator Merge branch '4.3-dev' into 4.4-dev 2023-05-17 16:28:38 +02:00
api Revert to dev 2023-04-30 12:20:11 -04:00
build Merge branch '4.3-dev' into 4.4-dev 2023-05-22 09:36:21 +02:00
cache
cli Add shebang to cli/joomla.php and make it executable (#40351) 2023-04-11 08:08:07 +02:00
components Merge branch '4.3-dev' into 4.4-dev 2023-05-22 09:36:21 +02:00
images [blog sample data] New attempt with different images. (#248) 2020-11-22 16:29:03 +01:00
includes Fixes various code style issues and integrate PHP CS Fixer into drone (#39745) 2023-01-31 11:20:05 +01:00
installation Merge branch '4.3-dev' into 4.4-dev 2023-05-08 06:30:28 +02:00
language Merge branch '4.3-dev' into 4.4-dev 2023-05-13 17:53:15 +02:00
layouts [4.3] Deprecation reviews (#38657) 2023-04-09 00:06:01 -04:00
libraries Convert workflow plugins to service provider (#40205) 2023-05-23 14:06:03 +02:00
modules Delete HelperFactory class (#40567) 2023-05-10 20:54:07 +02:00
plugins Convert the content plugins to service providers (#40561) 2023-05-23 15:08:47 +02:00
templates change "navbar navbar-expand-md" to "navbar navbar-expand-lg" (#40574) 2023-05-12 10:08:19 -04:00
tests Added an api test for newsfeed (#40635) 2023-05-22 10:43:34 +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 Use 4.2-dev in core translation workflow (#38698) 2022-09-06 10:59:03 +01:00
.gitignore Move API system tests to cypress (#40135) 2023-03-20 09:51:42 +01:00
.php-cs-fixer.dist.php Fixes various code style issues and integrate PHP CS Fixer into drone (#39745) 2023-01-31 11:20:05 +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 Bump branch (#40075) 2023-03-10 18:26:07 +01:00
README.txt [4.4] set the correct version number for 4.4 (#40071) 2023-03-10 16:13:45 +01:00
build.xml [4.4] set the correct version number for 4.4 (#40071) 2023-03-10 16:13:45 +01:00
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 Add tests for global configuration and support mail tests (#40583) 2023-05-15 14:31:39 +02:00
htaccess.txt Don't append but set the "Content-Encoding" header value in htaccess.txt (#39205) 2023-03-07 21:41:03 +01:00
index.php Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
package-lock.json Add tests for global configuration and support mail tests (#40583) 2023-05-15 14:31:39 +02:00
package.json Add tests for global configuration and support mail tests (#40583) 2023-05-15 14:31:39 +02: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
renovate.json Renovatebot: Only do security updates on 4.2-dev (#39025) 2022-10-22 15:31:10 +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.4] Remove obsolete exclude pattern from ruleset.xml for phpcs (#40277) 2023-05-23 16:15:01 +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.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?