Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Composer: Difference between revisions

From MoodleDocs
(Use stable Moodle repository in order to avoid that people download Moodle from the integration server)
Line 7: Line 7:
         {
         {
             "type": "vcs",
             "type": "vcs",
             "url": "https://git.in.moodle.com/moodle/integration.git"
             "url": "https://github.com/moodle/moodle.git"
         }
         }
     ],
     ],

Revision as of 14:03, 6 July 2017

Use composer to download moodle code

Composer.json now includes meta information and hence composer can be used to download the moodle code base. You can do it by creating composer.json file with following information {

   "repositories": [
       {
           "type": "vcs",
           "url": "https://github.com/moodle/moodle.git"
       }
   ],
   "require": {
       "moodle/moodle": "v3.2.0"
   }

} And then execute php composer.phar install