-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.05 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.05 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
{
"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": "^8.1",
"composer/composer": "^2.0.0",
"composer/installers": "^1 || ^2",
"larajax/larajax": "^2.0",
"doctrine/dbal": "^2.13.3|^3.1.4",
"intervention/image": "^3.10",
"jaybizzle/crawler-detect": "^1.3",
"linkorb/jsmin-php": "~1.0",
"wikimedia/less.php": "~5.2",
"scssphp/scssphp": "~1.0",
"symfony/yaml": "^6.4|^7.0",
"twig/twig": "^3.26",
"league/csv": "~9.1",
"laravel/tinker": "~2.0|~3.0",
"symfony/html-sanitizer": "^6.1|^7.0",
"enshrined/svg-sanitize": "^0.22"
},
"require-dev": {
"laravel/framework": "^12.0",
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0|^12.5.22",
"meyfa/phpunit-assert-gd": "^2.0.0|^3.0.0",
"phpbench/phpbench": "^1.4"
},
"autoload": {
"files": [
"init/init.php"
],
"classmap": [
"globals/"
],
"psr-4": {
"October\\Rain\\": "src/",
"October\\Contracts\\": "contracts/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": [
"phpunit --stop-on-failure"
],
"bench": [
"phpbench run tests\\Benchmark\\ --report=default"
]
},
"extra": {
"laravel": {
"providers": [
"October\\Rain\\Foundation\\Providers\\CoreServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}