-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.08 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "ractstudio/wp-frame-studio",
"description": "The modern Laravel-like core builder framework for WordPress — powering WP Plugin Frame and WP Theme Frame with clean architecture, modular design, and a next-gen developer experience.",
"type": "library",
"version": "0.1.0",
"autoload": {
"psr-4": {
"RactStudio\\FrameStudio\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"RactStudio\\FrameStudio\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Mahamudul Hasan Rubel",
"email": "bd.mhrubel@gmail.com"
},
{
"name": "RactStudio",
"email": "ractstudio@gmail.com"
}
],
"require": {
"php": "^8.2",
"vlucas/phpdotenv": "^5.5",
"symfony/console": "^5.4|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"config": {
}
}