-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
103 lines (102 loc) · 3.03 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
{
"name": "winter/storm",
"description": "Winter CMS Storm Library",
"homepage": "https://wintercms.com",
"keywords": ["winter", "cms", "storm"],
"license": "MIT",
"authors": [
{
"name": "Alexey Bobkov",
"email": "[email protected]",
"role": "Original Author"
},
{
"name": "Samuel Georges",
"email": "[email protected]",
"role": "Original Author"
},
{
"name": "Luke Towers",
"email": "[email protected]",
"role": "Lead Maintainer"
}
],
"require": {
"php": "^8.0.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-zip": "*",
"assetic/framework": "~3.0",
"doctrine/dbal": "^2.6",
"enshrined/svg-sanitize": "~0.16",
"laravel/framework": "^9.1",
"laravel/tinker": "^2.7",
"league/csv": "~9.1",
"nesbot/carbon": "^2.0",
"nikic/php-parser": "^4.10",
"scssphp/scssphp": "~1.0",
"symfony/console": ">=6.0.9 <6.3.0",
"symfony/yaml": "^6.0",
"twig/twig": "^3.14",
"wikimedia/less.php": "~3.0",
"wikimedia/minify": "~2.2",
"winter/laravel-config-writer": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.8",
"mockery/mockery": "^1.4.4",
"squizlabs/php_codesniffer": "^3.2",
"php-parallel-lint/php-parallel-lint": "^1.0",
"meyfa/phpunit-assert-gd": "^3.0.0",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"larastan/larastan": "^2.8.1",
"orchestra/testbench": "^7.1.0"
},
"suggest": {
"ext-pdo_dblib": "Required to use MS SQL Server databases",
"ext-pdo_mysql": "Required to use MySQL databases",
"ext-PDO_ODBC": "Required to use databases accessed through ODBC drivers",
"ext-pdo_pgsql": "Required to use PostgreSQL databases",
"ext-pdo_sqlite": "Required to use SQLite databases"
},
"replace": {
"october/rain": "self.version"
},
"autoload": {
"files": [
"src/Support/aliases.php",
"src/Support/helpers.php",
"src/Router/helpers.php",
"src/Html/helpers.php"
],
"psr-4": {
"Winter\\Storm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Winter\\Storm\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit ./tests",
"lint": "parallel-lint --exclude vendor .",
"sniff": "phpcs --colors -nq --report=\"full\" --extensions=\"php\"",
"analyze": "phpstan analyse --memory-limit=2G src"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}