Created
January 16, 2014 09:11
-
-
Save staabm/8451948 to your computer and use it in GitHub Desktop.
composer.json for phpunit 3.6 on Ubuntu 10 (requred, because of php 5.2)
This file contains 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": { | |
"php": ">=5.2.0", | |
"staabm/thincache": "0.*", | |
"rmccue/requests": "1.6.*", | |
"ircmaxell/password-compat": "1.0.*", | |
"staabm/xhprof.io": "dev-master" | |
}, | |
"require-dev": { | |
"lstrojny/phpunit-clever-and-smart": "dev-master", | |
"pear-phpunit/phpunit": "3.6.*" | |
}, | |
"scripts": { | |
"post-update-cmd": [ | |
"composer dump-autoload --optimize" | |
], | |
"post-install-cmd": [ | |
"composer dump-autoload --optimize" | |
] | |
}, | |
"repositories": [ | |
{ | |
"type": "pear", | |
"url": "pear.phpunit.de" | |
}, | |
{ | |
"type": "pear", | |
"url": "pear.symfony-project.com" | |
}, | |
{ | |
"type": "vcs", | |
"url": "https://github.com/staabm/phpunit-clever-and-smart" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment