Added composer.json and composer.lock

This commit is contained in:
Alexander Liljengård
2016-05-24 13:54:03 +02:00
parent 8fab1b5edc
commit 2679d6a6f8
2 changed files with 1007 additions and 0 deletions

30
composer.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "moserware/skills",
"description": "Implementation of Microsoft's TrueSkill matchmaking system for PHP",
"keywords": ["trueskill","matchmaking"],
"homepage": "https://github.com/moserware/Skills",
"version": "1.0.0-alpha1",
"authors": [
{
"name": "Jeff Moser",
"email": "jeff@moserware.com",
"role": "Maintainer"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Moserware\\Skills\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moserware\\Skills\\Tests\\": "tests/"
}
}
}