mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-19 12:24:28 +00:00
Added composer.json and composer.lock
This commit is contained in:
30
composer.json
Normal file
30
composer.json
Normal 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/"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user