-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
64 lines (64 loc) · 1.47 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
{
"name": "silverorange/swat",
"description": "Web application toolkit.",
"type": "library",
"keywords": [ "swat", "toolkit", "widget" ],
"homepage": "https://code.silverorange.com/swat",
"license": "LGPL-2.1",
"authors": [
{
"name": "Charles Waddell",
"email": "[email protected]"
},
{
"name": "Isaac Grant",
"email": "[email protected]"
},
{
"name": "Michael Gauthier",
"email": "[email protected]"
},
{
"name": "Nathan Frederikson",
"email": "[email protected]"
},
{
"name": "Nick Burka",
"email": "[email protected]"
},
{
"name": "Steven Garrity",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://composer.silverorange.com",
"only": ["silverorange/*"]
}
],
"require": {
"php": ">=8.1.0",
"ext-dom": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"pear/pear_exception": "^1.0.0",
"silverorange/mdb2": "^3.1.1",
"silverorange/concentrate": "^2.0.0",
"silverorange/yui": "^1.0.11"
},
"require-dev": {
"silverorange/coding-standard": "^1.0.0"
},
"autoload": {
"classmap": [ "Swat/", "SwatDB/", "SwatI18N/" ]
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
}
}