forked from octobercms/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.99 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
{
"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": ">=5.4",
"doctrine/dbal": "~2.3",
"erusev/parsedown-extra": "~0.1",
"illuminate/database": "4.2.*",
"illuminate/filesystem": "4.2.*",
"illuminate/html": "4.2.*",
"illuminate/queue": "4.2.*",
"illuminate/support": "4.2.*",
"indatus/dispatcher": "1.*",
"kriswallsmith/assetic": "~1.1",
"linkorb/jsmin-php": "~1.0",
"oyejorge/less.php": "~1.7",
"symfony/config": "2.5.*",
"symfony/translation": "2.5.*",
"symfony/yaml": "2.5.*",
"twig/twig": "~1.13"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"replace": {
"october/auth": "self.version",
"october/config": "self.version",
"october/cron": "self.version",
"october/database": "self.version",
"october/extension": "self.version",
"october/filesystem": "self.version",
"october/html": "self.version",
"october/mail": "self.version",
"october/network": "self.version",
"october/router": "self.version",
"october/support": "self.version",
"october/syntax": "self.version",
"october/translation": "self.version"
},
"autoload": {
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"October\\Rain\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev"
}