Created
November 29, 2012 01:03
-
-
Save dongilbert/4165997 to your computer and use it in GitHub Desktop.
Joomla Composer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"require": { | |
"joomla/platform": ">=13.2" | |
}, | |
"minimum-stability": "dev", | |
"require-dev": { | |
"phpunit/phpunit": "3.7.*" | |
}, | |
"config": { | |
"bin-dir": "bin", | |
"vendor-dir": "libraries", | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "joomla/platform", | |
"description": "A web application platform.", | |
"keywords": ["joomla", "platform", "framework"], | |
"license": "GPL", | |
"require": { | |
"php": ">=5.3.1", | |
"joomla/access": ">=1.0.0", | |
"joomla/cache": ">=1.0.0", | |
"joomla/client": ">=1.0.0", | |
"joomla/database": ">=1.0.0", | |
"joomla/environment": ">=1.0.0" | |
}, | |
"autoload": { | |
"psr-0": { | |
"Joomla\\Platform": "src/" | |
}, | |
"files": [ | |
"src/helpers.php" | |
] | |
}, | |
"minimum-stability": "dev" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment