forked from inex/IXP-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
131 lines (126 loc) · 3.84 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"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": "[email protected]",
"homepage": "https://www.inex.ie/",
"role": "Senior Coding Dude & INEX Network Consultant"
},
{
"name": "Nick Hilliard",
"email": "[email protected]",
"homepage": "https://www.inex.ie/",
"role": "Junior Coding Dweeb & Chief Technical Officer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/opensolutions/Bootstrap-Zend-Framework"
},
{
"type": "package",
"package": {
"name": "smarty/smarty",
"version": "3.1.18",
"dist": {
"url": "http://www.smarty.net/files/Smarty-3.1.18.zip",
"type": "zip"
},
"source": {
"url": "http://smarty-php.googlecode.com/svn/",
"type": "svn",
"reference": "tags/v3.1.18/distribution/"
}
}
},
{
"url": "[email protected]:oss2/doctrine2.git",
"type": "vcs"
},
{
"url": "[email protected]:oss2/var-utils.git",
"type": "vcs"
},
{
"url": "[email protected]:oss2/auth.git",
"type": "vcs"
}
],
"require": {
"php": ">=5.5.0",
"opensolutions/oss-framework": "dev-master",
"zendframework/zendframework1": "~1.12",
"smarty/smarty": "3.1.18",
"opensolutions/minify": "1.*",
"komola/bootstrap-zend-framework": "dev-master",
"opensolutions/oss-snmp": "dev-master",
"laravel/framework": "5.2.*",
"laravel-doctrine/orm": "1.1.*",
"oss2/doctrine2": "dev-master",
"oss2/var-utils": "dev-master",
"oss2/auth": "dev-master",
"league/plates": "3.*",
"franzl/laravel-plates": "dev-master",
"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": [
"vendor/smarty/smarty/libs/Smarty.class.php",
"vendor/smarty/smarty/libs/SmartyBC.class.php",
"vendor/smarty/smarty/libs/sysplugins/smarty_security.php",
"database"
],
"psr-0": {
"IXP_": "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"
}