File tree Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
1
+ composer.lock
2
+ vendor /*
3
+ koharness_bootstrap.php
4
+
Original file line number Diff line number Diff line change
1
+ language : php
2
+
3
+ php :
4
+ - 5.3
5
+ - 5.4
6
+ - 5.5
7
+ - 5.6
8
+ - hhvm
9
+
10
+ before_script :
11
+ - composer install --prefer-dist
12
+ - vendor/bin/koharness
13
+
14
+ script :
15
+ - cd /tmp/koharness && ./vendor/bin/phpunit --bootstrap=modules/unittest/bootstrap.php modules/unittest/tests.php
16
+
17
+ notifications :
18
+ email : false
Original file line number Diff line number Diff line change 25
25
"kohana/database" : " >=3.3" ,
26
26
"php" : " >=5.3.3"
27
27
},
28
+ "require-dev" : {
29
+ "kohana/core" : " 3.3.*@dev" ,
30
+ "kohana/database" : " 3.3.*@dev" ,
31
+ "kohana/unittest" : " 3.3.*@dev" ,
32
+ "kohana/koharness" : " *@dev"
33
+ },
28
34
"extra" : {
29
35
"branch-alias" : {
30
36
"dev-3.3/develop" : " 3.3.x-dev" ,
31
37
"dev-3.4/develop" : " 3.4.x-dev"
32
- }
38
+ },
39
+ "installer-paths" : {
40
+ "vendor/{$vendor}/{$name}" : [" type:kohana-module" ]
41
+ }
33
42
}
34
43
}
Original file line number Diff line number Diff line change
1
+ <?php
2
+ // Configuration for koharness - builds a standalone skeleton Kohana app for running unit tests
3
+ return array (
4
+ 'modules ' => array (
5
+ 'orm ' => __DIR__ ,
6
+ 'unittest ' => __DIR__ . '/vendor/kohana/unittest '
7
+ ),
8
+ );
You can’t perform that action at this time.
0 commit comments