29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-27 07:33:41 +00:00
Home of the Joomla! Content Management System
Go to file
2023-01-12 16:34:43 +01:00
.github Update github actions in workflows (#39066) 2022-10-25 09:34:52 +01:00
administrator Encode path parameters in MM API calls (#39613) 2023-01-12 16:13:58 +01:00
api [4][webservices] return tag info on GET content articles (#39009) 2023-01-07 18:07:50 +01:00
build Encode path parameters in MM API calls (#39613) 2023-01-12 16:13:58 +01:00
cache [#23165] Make index.html's valid 2011-06-19 13:39:37 +00:00
cli Phase 1 convert CMS to PSR-12 2022-06-27 20:18:44 +02:00
components Fix Feature start and end date on category blog (#39572) 2023-01-09 18:59:31 +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 [4.2] The "activate" tag is not needed in the user registration email template without activation (#39195) 2022-12-29 20:52:45 +01:00
language Reset to dev 2022-12-13 13:37:36 +01:00
layouts Fix radio form field required validation (#39578) 2023-01-09 19:34:12 +01:00
libraries Allow dynamic properties for Table, MenuItem and CMSObject (#39591) 2023-01-12 16:34:43 +01:00
modules Change name of style (#39585) 2023-01-10 19:06:49 +01:00
plugins Fixed rate button misalignment (#39465) 2023-01-07 18:10:11 +01:00
templates [4.2] Clean the logo URL in Cassiopeia (#39574) 2023-01-10 20:29:31 +01:00
tests [4.2] typos/grammar (#39432) 2022-12-17 23:38:41 +01:00
tmp [#23165] Make index.html's valid 2011-06-19 13:39:37 +00:00
.appveyor.yml Refactored WebAuthn with Windows Hello support (#37910) 2022-06-27 19:16:07 +02:00
.drone.yml Remove patch packages from nightly builds 2022-12-18 13:51:58 +01: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
build.xml Update version to 4.2-dev 2022-01-23 12:10:17 +01:00
CODE_OF_CONDUCT.md Joomla! 3.9.14 2020-03-04 18:50:06 +00:00
codeception.yml [4.0] Systemtests add timeout option on acceptance.yml (#26559) 2019-10-12 22:01:13 +02:00
composer.json Fix/38233 webauth preload fido (#38664) 2022-09-02 21:37:25 +02:00
composer.lock Update guzzle to 7.4.5 2022-12-22 00:29:55 +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
LICENSE.txt Revert the license text to the original GPL text as distributed by the FSF 2015-03-01 10:49:27 +00:00
package-lock.json [4.2] Media manager improvements (#39409) 2022-12-28 17:39:43 +00:00
package.json [4.2] Media manager improvements (#39409) 2022-12-28 17:39:43 +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 Switching from Travis to Drone 2020-08-30 21:32:00 +02:00
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
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.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

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?