-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (45 loc) · 927 Bytes
/
composer.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "firestark/testing",
"version": "0.0.1",
"description": "A unit testing framework.",
"type": "library",
"keywords": [
"unit testing"
],
"license": "MIT",
"authors": [
{
"name": "Aron Wouters",
"email": "firestark@mail.com",
"role": "Developer"
}
],
"require": {
"filp/whoops": "*",
"symfony/var-dumper": "*"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"testing\\": "source"
},
"classmap": [
],
"files": [
"source/debug/debugger.php",
"source/debug/functions.php"
]
},
"autoload-dev": {
"psr-4": {
},
"classmap": [
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"bin": [ ]
}