Framework

Home: Difference between revisions

From Joomla! Documentation

Tom Hutchison (talk | contribs)
new page
 
Tom Hutchison (talk | contribs)
m checking a way to display without <markdown> tags; will remove the extension enabling the tag in future
 
(24 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{:{{FULLPAGENAME}}/header}}
<noinclude><languages /></noinclude>
 
<div class="floatright panel" style="margin-top:10px;">
<span class="no-external-icon" style="margin-right:-12px;">
[https://travis-ci.org/joomla/joomla-framework https://api.travis-ci.org/joomla/joomla-framework.png]
</span><small><center>Build Status</center></small></div>
<translate><!--T:1-->
The <code>Joomla! Framework</code> is a framework for writing web and command line applications in PHP. It is free and open source software, distributed under the GNU General Public License version 2 or later.</translate>
 
<translate><!--T:2-->
It is composed of code originally developed for the Joomla Content Management System (CMS). For more information about the Joomla CMS visit http://www.joomla.org/about-joomla.html.
 
<!--T:3-->
For news and information about developing with Joomla, please visit http://developer.joomla.org.</translate>
 
<translate><!--T:4-->
View the Joomla Framework API Documentation at http://api.joomla.org, which is powered by [http://www.phpdoc.org phpDocumentor 2].
 
<!--T:5-->
You can discuss Joomla Framework development by joining the mailing list at http://groups.google.com/group/joomla-dev-framework.</translate>
 
<translate>== Requirements == <!--T:6--></translate>
 
* PHP 5.3.10
 
<translate>== Installation == <!--T:7-->
=== Via Composer ===
 
<!--T:8-->
* Create a project and add a <code>composer.json</code> file to it with the following content:</translate>
 
<pre class="json">{
    "require": {
        "joomla/framework": "dev-master"
    }
}</pre>
 
<translate><!--T:9-->
* Download Composer</translate>
 
<code>curl -sS <nowiki>https://getcomposer.org/installer</nowiki> | php</code>
 
<translate><!--T:10-->
* Install the Joomla Framework</translate>
 
<code>php composer.phar install</code>
 
<translate>=== Via Git === <!--T:11--></translate>
 
<code><nowiki>git clone git://github.com/joomla/joomla-framework.git</nowiki></code>
 
<translate>== Getting Started == <!--T:12--></translate>
 
<translate><!--T:13-->
The [[S:MyLanguage/Framework:Getting_Started|Framework Getting Started]] page has some questions and answers to some common problems that may occur while getting started with your first app.  Another great resource is the sample framework app.  You can find it on github here.  https://github.com/dbhurley/framework-app</translate>
 
<translate>== Documentation == <!--T:14--></translate>
 
<translate><!--T:15-->
General documentation about the Joomla Framework can be found under the [https://github.com/joomla/joomla-framework/tree/master/docs /docs] folder of the Git repository. In addition, each package has documentation in a <code>README.md</code> file.</translate>
 
<translate>== Reporting Bugs and Issue == <!--T:16-->
 
<!--T:17-->
Bugs and issues found in the Joomla Framework code can be reported on the [https://github.com/joomla/joomla-framework/issues Issues] list.</translate>
 
<translate>== Contributing == <!--T:18-->
 
<!--T:19-->
All kind of contributions are welcome. Please read about how to contribute [https://github.com/joomla/joomla-framework/blob/master/CONTRIBUTING.markdown here].</translate>
 
<translate><!--T:20-->
You may find tasks you can do on the [https://github.com/joomla/joomla-framework/issues Issues] list by filtering on labels and milestones</translate>
 
<translate><!--T:21-->
[[Category:Joomla! Framework]]</translate>

Latest revision as of 17:17, 11 December 2016

The Joomla! Framework is a framework for writing web and command line applications in PHP. It is free and open source software, distributed under the GNU General Public License version 2 or later.

It is composed of code originally developed for the Joomla Content Management System (CMS). For more information about the Joomla CMS visit http://www.joomla.org/about-joomla.html.

For news and information about developing with Joomla, please visit http://developer.joomla.org.

View the Joomla Framework API Documentation at http://api.joomla.org, which is powered by phpDocumentor 2.

You can discuss Joomla Framework development by joining the mailing list at http://groups.google.com/group/joomla-dev-framework.

Requirements

  • PHP 5.3.10

Installation

Via Composer

  • Create a project and add a composer.json file to it with the following content:
{
    "require": {
        "joomla/framework": "dev-master"
    }
}
  • Download Composer

curl -sS https://getcomposer.org/installer | php

  • Install the Joomla Framework

php composer.phar install

Via Git

git clone git://github.com/joomla/joomla-framework.git

Getting Started

The Framework Getting Started page has some questions and answers to some common problems that may occur while getting started with your first app. Another great resource is the sample framework app. You can find it on github here. https://github.com/dbhurley/framework-app

Documentation

General documentation about the Joomla Framework can be found under the /docs folder of the Git repository. In addition, each package has documentation in a README.md file.

Reporting Bugs and Issue

Bugs and issues found in the Joomla Framework code can be reported on the Issues list.

Contributing

All kind of contributions are welcome. Please read about how to contribute here.

You may find tasks you can do on the Issues list by filtering on labels and milestones