-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.php
More file actions
67 lines (59 loc) · 1.87 KB
/
Copy pathmodule.php
File metadata and controls
67 lines (59 loc) · 1.87 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
<?php
/**
* Jiny Modules 모듈 정보
*
* 이 파일은 Jiny Modules 패키지의 기본 정보를 정의합니다.
* Module::info() 메서드에서 이 정보를 읽어와 반환합니다.
*/
return [
// 기본 모듈 정보
'name' => 'Jiny Modules',
'version' => '1.0.0',
'description' => 'Jiny Modules Management System',
'author' => 'Jiny Team',
'created_at' => '2024-01-01 00:00:00',
// 모듈 경로 (__DIR__ 상수 사용)
'path' => __DIR__,
// 모듈 기능 정보
'features' => [
'auto_loader' => true,
'helper_system' => true,
'module_management' => true,
'service_provider_detection' => true,
'package_info_management' => true,
'facade_system' => true
],
// 모듈 설정 정보
'config' => [
'scan_path' => base_path('jiny'),
'helper_cache' => true,
'auto_discovery' => true,
'module_info_file' => 'module.php'
],
// 모듈 의존성
'dependencies' => [
'laravel/framework' => '^10.0',
'illuminate/support' => '^10.0'
],
// 모듈 구조 정보
'structure' => [
'app' => '애플리케이션 로직',
'config' => '설정 파일',
'database' => '데이터베이스 관련',
'docs' => '문서',
'Helpers' => '헬퍼 함수',
'Http' => 'HTTP 관련',
'resources' => '리소스 파일',
'routes' => '라우트 정의',
'Services' => '서비스 클래스',
'stubs' => '스텁 파일',
'tests' => '테스트 파일'
],
// 모듈 메타데이터
'metadata' => [
'namespace' => 'Jiny\\Modules',
'service_provider' => 'Jiny\\Modules\\JinyModulesServiceProvider',
'facade' => 'Jiny\\Modules\\App\\Facades\\Module',
'main_service' => 'Jiny\\Modules\\App\\Services\\ModuleInfoService'
]
];