-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.21 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
{
"name": "tomdenbraber/php-exception-flow-analysis",
"description": "Application which provides functionalities for performing an empirical study on PHP projects related to exception handling",
"licence": "MIT",
"authors": [
{
"name": "Tom den Braber",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/tomdenbraber/php-throws-annotation-collector"
},
{
"type": "git",
"url": "https://github.com/tomdenbraber/php-exception-preliminary-analysis"
},
{
"type": "git",
"url": "https://github.com/tomdenbraber/php-exception-flow"
},
{
"type": "git",
"url": "https://github.com/tomdenbraber/php-types"
},
{
"type": "git",
"url": "https://github.com/tomdenbraber/php-cfg"
}
],
"require": {
"php": ">=7.0",
"symfony/console": "^3.0",
"tomdenbraber/php-exception-flow": "dev-master",
"tomdenbraber/php-throws-annotation-collector": "dev-master",
"tomdenbraber/php-exception-preliminary-analysis": "dev-master",
"ircmaxell/php-cfg": "dev-master",
"ircmaxell/php-types": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"PhpEFAnalysis\\": "src/PhpEFAnalysis"
}
}
}