This repository was archived by the owner on Dec 19, 2023. It is now read-only.
forked from octobercms/library
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
114 lines (114 loc) · 3.36 KB
/
composer.json
File metadata and controls
114 lines (114 loc) · 3.36 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "october/rain",
"description": "October Rain Library",
"homepage": "http://octobercms.com",
"keywords": ["october", "cms", "rain"],
"license": "MIT",
"authors": [
{
"name": "Alexey Bobkov",
"email": "aleksey.bobkov@gmail.com",
"role": "Co-founder"
},
{
"name": "Samuel Georges",
"email": "daftspunky@gmail.com",
"role": "Co-founder"
},
{
"name": "Luke Towers",
"email": "octobercms@luketowers.ca",
"homepage": "https://luketowers.ca",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-PDO": "*",
"ext-zip": "*",
"doctrine/dbal": "^2.6",
"erusev/parsedown-extra": "~0.7",
"linkorb/jsmin-php": "~1.0",
"wikimedia/less.php": "~2.0",
"scssphp/scssphp": "~1.0",
"symfony/yaml": "^3.4",
"twig/twig": "~2.0",
"league/csv": "~9.1",
"nesbot/carbon": "^2.0",
"laravel/framework": "~6.0",
"laravel/tinker": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"illuminate/database": "^6.0",
"illuminate/encryption": "^6.0",
"illuminate/filesystem": "^6.0",
"illuminate/queue": "^6.0",
"illuminate/support": "^6.0",
"illuminate/log": "^6.0",
"illuminate/mail": "^6.0",
"illuminate/events": "^6.0",
"illuminate/pagination": "^6.0",
"illuminate/redis": "^6.0",
"illuminate/routing": "^6.0",
"illuminate/validation": "^6.0",
"illuminate/view": "^6.0",
"illuminate/cache": "^6.0",
"squizlabs/php_codesniffer": "3.*",
"php-parallel-lint/php-parallel-lint": "^1.0",
"meyfa/phpunit-assert-gd": "^2.0.0",
"dms/phpunit-arraysubset-asserts": "^0.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"
},
"autoload": {
"files": [
"src/Support/helpers.php",
"src/Router/helpers.php",
"src/Html/helpers.php"
],
"psr-4": {
"October\\Rain\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"October\\Rain\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit --stop-on-failure"
],
"lint": [
"parallel-lint --exclude vendor --exclude storage --exclude tests/fixtures/plugins/testvendor/goto/Plugin.php ."
],
"sniff": [
"phpcs --colors -nq --report=\"full\" --extensions=\"php\""
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}