forked from inex/IXP-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
110 lines (105 loc) · 3.02 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "inex/IXP-Manager",
"description": "An application by INEX to manage Internet Exchange Points (IXPs)",
"type": "project",
"keywords": ["ixp manager", "ixpm", "inex", "ixp"],
"homepage": "https://github.com/inex/IXP-Manager/wiki",
"license": "GPL-2.0",
"authors": [
{
"name": "Barry O'Donovan",
"email": "barry.odonovan@inex.ie",
"homepage": "https://www.inex.ie/",
"role": "Senior Coding Dude & INEX Network Consultant"
},
{
"name": "Nick Hilliard",
"email": "nick@inex.ie",
"homepage": "https://www.inex.ie/",
"role": "Junior Coding Dweeb & Chief Technical Officer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/opensolutions/Bootstrap-Zend-Framework"
},
{
"url": "git@github.com:oss2/doctrine2.git",
"type": "vcs"
},
{
"url": "git@github.com:oss2/var-utils.git",
"type": "vcs"
},
{
"url": "git@github.com:oss2/auth.git",
"type": "vcs"
}
],
"require": {
"php": ">=7.0",
"zendframework/zendframework1": "~1.12",
"komola/bootstrap-zend-framework": "dev-master",
"opensolutions/oss-snmp": "dev-master",
"laravel/framework": "5.3.*",
"laravel-doctrine/orm": "1.2.*",
"oss2/doctrine2": "dev-master",
"oss2/var-utils": "dev-master",
"oss2/auth": "dev-master",
"smarty/smarty": "~3.1",
"league/plates": "3.*",
"zendesk/zendesk_api_client_php": "dev-master",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "~5.1",
"phpspec/phpspec": "~2.1",
"phpunit/php-code-coverage": "~3.1",
"symfony/dom-crawler": "~3.0",
"symfony/css-selector": "~3.0"
},
"support": {
"issues": "https://github.com/inex/IXP-Manager/issues",
"wiki": "https://github.com/inex/IXP-Manager/wiki",
"source": "https://github.com/inex/IXP-Manager"
},
"autoload": {
"classmap": [
"database"
],
"psr-0": {
"IXP_": "library/",
"OSS_": "library/"
},
"psr-4": {
"IXP\\": "app/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}