forked from Niehztog/php-quake-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 749 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "niehztog/php-quake-map",
"description": "Parsing Quake Maps in PHP",
"type": "project",
"authors": [
{
"name": "Nils Gotzhein",
"email": "nilsgotzhein@gmail.com"
}
],
"autoload": {
"psr-4": {
"QuakeMap\\": "src/QuakeMap/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Niehztog/Math_Vector"
},
{
"type": "vcs",
"url": "https://github.com/Niehztog/Math_Plane"
}
],
"require": {
"pear/math_vector": "dev-master",
"niehztog/math_plane": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}