File tree 3 files changed +33
-4
lines changed
3 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " barberry/barberry" ,
3
- "version" : " 1.0.0" ,
4
3
"license" : " MIT" ,
4
+ "repositories" : [
5
+ {
6
+ "type" : " package" ,
7
+ "package" : {
8
+ "name" : " hamcrest/hamcrest" ,
9
+ "version" : " 1.1.0" ,
10
+ "dist" : {
11
+ "type" : " zip" ,
12
+ "url" : " https://hamcrest.googlecode.com/files/hamcrest-php-1.1.0.zip"
13
+ },
14
+ "include-path" : [" Hamcrest-1.1.0/" ],
15
+ "autoload" : {
16
+ "psr-0" : { "Hamcrest_" : " Hamcrest-1.1.0/" },
17
+ "files" : [" Hamcrest-1.1.0/Hamcrest/Hamcrest.php" ]
18
+ }
19
+ }
20
+ }
21
+ ],
5
22
"autoload" : {
6
23
"psr-0" : {
7
24
"Barberry" : " library/"
11
28
"php" : " >=5.3.3" ,
12
29
"barberry/interfaces" : " dev-master"
13
30
},
14
- "minimum-stability" : " dev"
31
+ "require-dev" : {
32
+ "mockery/mockery" : " 0.7.2" ,
33
+ "phpunit/phpunit" : " 3.7.1" ,
34
+ "hamcrest/hamcrest" : " 1.1.0"
35
+ }
15
36
}
Original file line number Diff line number Diff line change
1
+ ./vendor/bin/phpunit $*
Original file line number Diff line number Diff line change 1
1
<phpunit backupGlobals =" false"
2
2
backupStaticAttributes =" false"
3
- bootstrap =" test_bootstrap.php"
3
+ bootstrap =" test/ test_bootstrap.php"
4
4
cacheTokens =" true"
5
5
colors =" true"
6
6
convertErrorsToExceptions =" true"
18
18
strict =" false"
19
19
verbose =" false" >
20
20
<listeners >
21
- <listener class =" \Mockery\Adapter\Phpunit\TestListener" file =" Mockery/Adapter/Phpunit/TestListener.php" > </listener >
21
+ <listener class =" \Mockery\Adapter\Phpunit\TestListener"
22
+ file =" vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php" > </listener >
22
23
</listeners >
23
24
24
25
<php >
25
26
<env name =" APPLICATION_ENV" value =" testing" />
26
27
</php >
27
28
29
+ <testsuites >
30
+ <testsuite >
31
+ <directory >test</directory >
32
+ </testsuite >
33
+ </testsuites >
34
+
28
35
</phpunit >
You can’t perform that action at this time.
0 commit comments