forked from octobercms/library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.52 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "october/rain",
"description": "October Rain Library",
"homepage": "http://octobercms.com",
"keywords": ["october", "cms", "rain"],
"authors": [
{
"name": "Alexey Bobkov",
"email": "aleksey.bobkov@gmail.com"
},
{
"name": "Samuel Georges",
"email": "daftspunky@gmail.com"
}
],
"require": {
"php": ">=7.2",
"composer/composer": "2.1.*",
"doctrine/dbal": "^2.6",
"erusev/parsedown-extra": "~0.7",
"linkorb/jsmin-php": "~1.0",
"wikimedia/less.php": "~3.0",
"scssphp/scssphp": "~1.0",
"symfony/yaml": "^3.4",
"twig/twig": "~2.0",
"league/csv": "~9.1",
"nesbot/carbon": "^2.0",
"laravel/tinker": "~1.0"
},
"require-dev": {
"laravel/framework": "^6.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"files": [
"src/Support/helpers.php",
"src/Support/polyfills.php",
"src/Html/helpers.php"
],
"classmap": [
"helpers/"
],
"psr-4": {
"Assetic\\": "src/Assetic/Assetic/",
"October\\Rain\\": "src/",
"October\\Contracts\\": "contracts/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": [
"phpunit --stop-on-failure"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}