File tree Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Expand file tree Collapse file tree 3 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 27
27
break ;
28
28
}
29
29
30
+ if (file_exists ($ dir .'/vendor/autoload.php ' )) {
31
+ require_once $ dir .'/vendor/autoload.php ' ;
32
+ break ;
33
+ }
34
+
30
35
$ dir = dirname ($ dir );
31
36
}
32
37
Original file line number Diff line number Diff line change 17
17
],
18
18
"require" : {
19
19
"php" : " >=5.3.3" ,
20
- "symfony/security" : " ~2.2"
20
+ "symfony/security" : " ~2.2" ,
21
+ "symfony/http-kernel" : " ~2.2"
22
+ },
23
+ "require-dev" : {
24
+ "symfony/framework-bundle" : " ~2.2" ,
25
+ "symfony/twig-bundle" : " ~2.2" ,
26
+ "symfony/form" : " ~2.1" ,
27
+ "symfony/validator" : " ~2.2" ,
28
+ "symfony/yaml" : " ~2.0"
21
29
},
22
30
"autoload" : {
23
31
"psr-0" : { "Symfony\\ Bundle\\ SecurityBundle\\ " : " " }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+
3
+ <phpunit backupGlobals =" false"
4
+ backupStaticAttributes =" false"
5
+ colors =" true"
6
+ convertErrorsToExceptions =" true"
7
+ convertNoticesToExceptions =" true"
8
+ convertWarningsToExceptions =" true"
9
+ processIsolation =" false"
10
+ stopOnFailure =" false"
11
+ syntaxCheck =" false"
12
+ bootstrap =" vendor/autoload.php"
13
+ >
14
+
15
+ <testsuites >
16
+ <testsuite name =" Symfony SecurityBundle Test Suite" >
17
+ <directory >./Tests/</directory >
18
+ </testsuite >
19
+ </testsuites >
20
+
21
+ <filter >
22
+ <whitelist >
23
+ <directory >./</directory >
24
+ <exclude >
25
+ <directory >./Tests</directory >
26
+ <directory >./Resources</directory >
27
+ <directory >./vendor</directory >
28
+ </exclude >
29
+ </whitelist >
30
+ </filter >
31
+ </phpunit >
You can’t perform that action at this time.
0 commit comments