-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
68 lines (68 loc) · 1.64 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "phred/phred",
"type": "project",
"description": "Phred",
"keywords": ["phred", "extension", "framework"],
"license": "GPL-2.0",
"homepage": "https://github.com/nazariyg/Phred",
"authors":
[
{
"name": "nazariyg",
"email": "nazariyg@gmail.com"
}
],
"extra":
{
"branch-alias":
{
"dev-master": "0.4.x-dev"
}
},
"require":
{
"swiftmailer/swiftmailer": "5.0.*",
"nikic/php-parser": "1.0.*@dev"
},
"require-dev":
{
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "0.9.*"
},
"config":
{
"vendor-dir": "ThirdParty",
"preferred-install": "dist"
},
"autoload":
{
"classmap":
[
"PhredParty/Classes/Collection",
"PhredParty/Classes/File",
"PhredParty/Classes/Html",
"PhredParty/Classes/Http",
"PhredParty/Classes/Inet",
"PhredParty/Classes/Info",
"PhredParty/Classes/Io",
"PhredParty/Classes/Math",
"PhredParty/Classes/String",
"PhredParty/Classes/System",
"PhredParty/Classes/Time",
"PhredParty/Classes/U14n",
"PhredParty/Classes/Url",
"PhredParty/Interfaces",
"PhredParty/Data"
],
"files":
[
"PhredParty/Functions/FType.php",
"PhredParty/Functions/FDebug.php"
]
},
"scripts":
{
"post-install-cmd": "php Bootstrap/OnUpdate.php",
"post-update-cmd": "php Bootstrap/OnUpdate.php"
}
}