forked from octobercms/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.43 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
{
"name": "october/rain",
"description": "October Rain Library",
"homepage": "http://octobercms.com",
"keywords": ["october", "cms", "rain"],
"license": "MIT",
"authors": [
{
"name": "Alexey Bobkov",
"email": "[email protected]"
},
{
"name": "Samuel Georges",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"doctrine/dbal": "2.5.*",
"erusev/parsedown-extra": "~0.7",
"kriswallsmith/assetic": "~1.3",
"linkorb/jsmin-php": "~1.0",
"oyejorge/less.php": "~1.7",
"leafo/scssphp": "~0.6",
"symfony/yaml": "~3.2",
"twig/twig": "~2.0",
"league/csv": "~8.0",
"jenssegers/date": "~3.0",
"laravel/tinker": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"illuminate/database": "5.5.*",
"illuminate/filesystem": "5.5.*",
"illuminate/queue": "5.5.*",
"illuminate/support": "5.5.*",
"illuminate/log": "5.5.*",
"illuminate/mail": "5.5.*",
"illuminate/events": "5.5.*",
"illuminate/pagination": "5.5.*",
"illuminate/routing": "5.5.*",
"illuminate/validation": "5.5.*",
"illuminate/view": "5.5.*",
"illuminate/cache": "5.5.*",
"symfony/dom-crawler": "~3.1",
"symfony/css-selector": "~3.1",
"meyfa/phpunit-assert-gd": "1.1.0"
},
"replace": {
"october/auth": "self.version",
"october/config": "self.version",
"october/database": "self.version",
"october/extension": "self.version",
"october/filesystem": "self.version",
"october/halcyon": "self.version",
"october/html": "self.version",
"october/mail": "self.version",
"october/network": "self.version",
"october/parse": "self.version",
"october/router": "self.version",
"october/support": "self.version",
"october/translation": "self.version"
},
"autoload": {
"files": [
"src/Support/helpers.php",
"src/Html/helpers.php"
],
"psr-4": {
"October\\Rain\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev"
}