-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.94 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.94 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
{
"name": "rareloop/lumberjack-core",
"description": "A powerful MVC framework for the modern WordPress developer. Write better, more expressive and easier to maintain code",
"license": "MIT",
"require": {
"php": ">=8.3",
"php-di/php-di": "^7.1.1",
"rareloop/router": "^6.1.0",
"psr/container": "^2.0.2",
"psr/http-message": "^2",
"psr/http-server-middleware": "^1.0.2",
"timber/timber": "^2.3.3",
"monolog/monolog": "^3.9",
"illuminate/collections": "^10.49",
"statamic/stringy": "^3.1.3",
"laminas/laminas-diactoros": "^3.8.0",
"rareloop/psr7-server-request-extension": "^2.2.0",
"spatie/macroable": "^2.1.0",
"mindplay/middleman": "^4.0.4",
"psr/log": "^2.0.0",
"symfony/var-dumper": "^6.4.26",
"spatie/ignition": "^1.15.1",
"laminas/laminas-httphandlerrunner": "^2.13",
"symfony/error-handler": "^6.4.26",
"illuminate/support": "^10.49",
"illuminate/pipeline": "^10.49",
"spatie/backtrace": "^1.8.1",
"illuminate/conditionable": "^10.49",
"guzzlehttp/guzzle": "^7.10",
"spatie/flare-client-php": "^1.10.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6.29",
"php-coveralls/php-coveralls": "^2.8",
"mockery/mockery": "^1.6.12",
"brain/monkey": "^2.6.2",
"squizlabs/php_codesniffer": "^3.13.4",
"php-mock/php-mock": "^2.6.2",
"mikey179/vfsstream": "^1.6.12",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"antecedent/patchwork": "^2.2.3"
},
"autoload": {
"psr-4": {
"Rareloop\\Lumberjack\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rareloop\\Lumberjack\\Test\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true
}
}
}