This repository was archived by the owner on Jul 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
+ - 5.4
4
5
- 5.5
5
6
- 5.6
6
7
Original file line number Diff line number Diff line change 5
5
"license" : " MIT" ,
6
6
"type" : " project" ,
7
7
"require" : {
8
- "php" : " >=5.5.9 " ,
8
+ "php" : " >=5.4.16 " ,
9
9
"adldap2/adldap2" : " 5.0.*" ,
10
10
"laravel/framework" : " 5.*"
11
11
},
Original file line number Diff line number Diff line change 26
26
|
27
27
*/
28
28
29
- 'connection ' => Adldap \Connections \Ldap::class ,
29
+ 'connection ' => ' Adldap\Connections\Ldap ' ,
30
30
31
31
/*
32
32
|--------------------------------------------------------------------------
157
157
158
158
],
159
159
160
- ];
160
+ ];
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ class AdldapTest extends FunctionalTestCase
10
10
{
11
11
public function testConfigurationNotFoundException ()
12
12
{
13
- $ this ->setExpectedException (ConfigurationMissingException::class );
13
+ $ this ->setExpectedException (' Adldap\Laravel\Exceptions\ ConfigurationMissingException' );
14
14
15
15
App::make ('adldap ' );
16
16
}
17
17
18
18
public function testRegistration ()
19
19
{
20
- $ this ->assertTrue (app ()->register (AdldapServiceProvider::class ));
20
+ $ this ->assertTrue (app ()->register (' Adldap\Laravel\ AdldapServiceProvider' ));
21
21
}
22
22
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ protected function getEnvironmentSetup($app)
28
28
protected function getPackageProviders ()
29
29
{
30
30
return [
31
- AdldapServiceProvider::class ,
31
+ ' Adldap\Laravel\ AdldapServiceProvider' ,
32
32
];
33
33
}
34
34
@@ -40,7 +40,7 @@ protected function getPackageProviders()
40
40
protected function getPackageAliases ()
41
41
{
42
42
return [
43
- Adldap::class ,
43
+ ' Adldap\Laravel\Facades\Adldap ' ,
44
44
];
45
45
}
46
46
}
You can’t perform that action at this time.
0 commit comments