This repository was archived by the owner on May 18, 2024. It is now read-only.
File tree 2 files changed +10
-13
lines changed
2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " vendor/mymodule" ,
3
- "description" : " My module for CodeIgniter 4 (with tests!)" ,
2
+ "name" : " vendor/myproject" ,
3
+ "type" : " project" ,
4
+ "description" : " My project powered by CodeIgniter 4 (with tests!)" ,
4
5
"keywords" : [
5
6
" codeigniter" ,
6
7
" codeigniter4" ,
7
- " modules "
8
+ " projects "
8
9
],
9
10
"homepage" : " https://example.com" ,
10
11
"license" : " MIT" ,
24
25
],
25
26
"minimum-stability" : " dev" ,
26
27
"require" : {
27
- "php" : " >=7.2"
28
+ "php" : " >=7.2" ,
29
+ "codeigniter4/codeigniter4" : " dev-develop"
28
30
},
29
31
"require-dev" : {
30
- "phpunit/phpunit" : " ^7.0 " ,
32
+ "mikey179/vfsstream" : " 1.6.* " ,
31
33
"mockery/mockery" : " ^1.0" ,
32
- "codeigniter4/codeigniter4" : " dev-develop"
33
- },
34
- "autoload" : {
35
- "psr-4" : {
36
- "Vendor\\ MyModule\\ " : " src"
37
- }
34
+ "phpunit/phpunit" : " ^7.0"
38
35
},
39
36
"autoload-dev" : {
40
37
"psr-4" : {
41
- "ModuleTests \\ Support\\ " : " tests/_support"
38
+ "ProjectTests \\ Support\\ " : " tests/_support"
42
39
}
43
40
},
44
41
"scripts" : {
Original file line number Diff line number Diff line change 21
21
define ('SYSTEMPATH ' , realpath ($ paths ->systemDirectory ) . DIRECTORY_SEPARATOR );
22
22
define ('CIPATH ' , realpath (SYSTEMPATH . '../ ' ) . DIRECTORY_SEPARATOR );
23
23
24
- // Define necessary module test path constants
24
+ // Define necessary project test path constants
25
25
define ('SUPPORTPATH ' , realpath (__DIR__ ) . DIRECTORY_SEPARATOR );
26
26
define ('TESTPATH ' , realpath (SUPPORTPATH . '../ ' ) . DIRECTORY_SEPARATOR );
27
27
You can’t perform that action at this time.
0 commit comments