-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.25 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.25 KB
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
{
"name": "silverorange/swat",
"description": "Web application toolkit.",
"type": "library",
"keywords": [
"swat",
"toolkit",
"widget"
],
"homepage": "https://github.com/silverorange.com/swat",
"license": "LGPL-2.1",
"authors": [
{
"name": "Charles Waddell",
"email": "charles@silverorange.com"
},
{
"name": "Isaac Grant",
"email": "isaac@silverorange.com"
},
{
"name": "Michael Gauthier",
"email": "mike@silverorange.com"
},
{
"name": "Nathan Frederikson",
"email": "nathan@silverorange.com"
},
{
"name": "Nick Burka",
"email": "nick@silverorange.com"
},
{
"name": "Steven Garrity",
"email": "steven@silverorange.com"
},
{
"name": "Colin Viebrock",
"email": "colin@silverorange.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://composer.silverorange.com",
"only": [
"silverorange/*"
]
}
],
"require": {
"php": ">=8.2",
"ext-dom": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"pear/pear_exception": "^1.0.0",
"silverorange/concentrate": "^2.0.0",
"silverorange/mdb2": "^3.1.2",
"silverorange/yui": "^1.0.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.88.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"classmap": [
"Swat/",
"SwatDB/",
"SwatI18N/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"phpcs": "./vendor/bin/php-cs-fixer check -v",
"phpcs:ci": "./vendor/bin/php-cs-fixer check --config=.php-cs-fixer.php --no-interaction --show-progress=none --diff --using-cache=no -vvv",
"phpcs:write": "./vendor/bin/php-cs-fixer fix -v",
"phpstan": "./vendor/bin/phpstan analyze",
"phpstan:ci": "./vendor/bin/phpstan analyze -vvv --no-progress --memory-limit 2G",
"phpstan:baseline": "./vendor/bin/phpstan analyze --generate-baseline",
"phpunit": "./vendor/bin/phpunit --no-coverage",
"phpunit:coverage": "rm -rf ./build && XDEBUG_MODE=coverage ./vendor/bin/phpunit && npx serve build/coverage"
},
"config": {
"sort-packages": true
}
}