Skip to content

Commit e720a52

Browse files
committed
working on namespaces.
1 parent c8098f2 commit e720a52

File tree

78 files changed

+719
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+719
-132
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"src/Pheanstalk"
3535
],
3636
"files": [
37-
"src/helpers.php"
37+
"src/Illuminate/Support/helpers.php"
3838
],
3939
"psr-0": {
4040
"Illuminate": "src/"

src/Illuminate/Auth/Guard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php namespace Illuminate\Auth;
22

3-
use Illuminate\Encrypter;
4-
use Illuminate\CookieJar;
3+
use Illuminate\Cookie\CookieJar;
54
use Illuminate\Events\Dispatcher;
5+
use Illuminate\Encryption\Encrypter;
66
use Symfony\Component\HttpFoundation\Request;
77
use Illuminate\Session\Store as SessionStore;
88

src/Illuminate/Auth/composer.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "illuminate/auth",
3+
"authors": [
4+
{
5+
"name": "Taylor Otwell",
6+
"email": "[email protected]"
7+
}
8+
],
9+
"require": {
10+
"php": ">=5.3.0",
11+
"illuminate/cookie": "1.2.*",
12+
"illuminate/encryption": "1.2.*",
13+
"illuminate/hashing": "1.2.*",
14+
"illuminate/session": "1.2.*",
15+
"illuminate/support": "1.2.*",
16+
"symfony/http-foundation": "2.2.*"
17+
},
18+
"autoload": {
19+
"psr-0": {"Illuminate\\Auth": ""}
20+
},
21+
"target-dir": "Illuminate/Auth",
22+
"extra": {
23+
"branch-alias": {
24+
"dev-master": "1.2-dev"
25+
}
26+
},
27+
"minimum-stability": "dev"
28+
}

src/Illuminate/Cache/DatabaseStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php namespace Illuminate\Cache;
22

3-
use Illuminate\Encrypter;
43
use Illuminate\Database\Connection;
4+
use Illuminate\Encryption\Encrypter;
55

66
class DatabaseStore extends Store {
77

src/Illuminate/Cache/FileStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Illuminate\Cache; use Illuminate\Filesystem;
1+
<?php namespace Illuminate\Cache; use Illuminate\Filesystem\Filesystem;
22

33
class FileStore extends Store {
44

src/Illuminate/Cache/composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "illuminate/cache",
3+
"authors": [
4+
{
5+
"name": "Taylor Otwell",
6+
"email": "[email protected]"
7+
}
8+
],
9+
"require": {
10+
"php": ">=5.3.0",
11+
"illuminate/database": "1.2.*",
12+
"illuminate/encryption": "1.2.*",
13+
"illuminate/filesystem": "1.2.*",
14+
"illuminate/redis": "1.2.*",
15+
"illuminate/support": "1.2.*"
16+
},
17+
"autoload": {
18+
"psr-0": {"Illuminate\\Cache": ""}
19+
},
20+
"target-dir": "Illuminate/Cache",
21+
"extra": {
22+
"branch-alias": {
23+
"dev-master": "1.2-dev"
24+
}
25+
},
26+
"minimum-stability": "dev"
27+
}

src/Illuminate/Config/FileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php namespace Illuminate\Config;
22

3-
use Illuminate\Filesystem;
3+
use Illuminate\Filesystem\Filesystem;
44

55
class FileLoader implements LoaderInterface {
66

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "illuminate/config",
3+
"authors": [
4+
{
5+
"name": "Taylor Otwell",
6+
"email": "[email protected]"
7+
}
8+
],
9+
"require": {
10+
"php": ">=5.3.0",
11+
"illuminate/filesystem": "1.2.*",
12+
"illuminate/support": "1.2.*"
13+
},
14+
"autoload": {
15+
"psr-0": {"Illuminate\\Config": ""}
16+
},
17+
"target-dir": "Illuminate/Config",
18+
"extra": {
19+
"branch-alias": {
20+
"dev-master": "1.2-dev"
21+
}
22+
},
23+
"minimum-stability": "dev"
24+
}

src/Illuminate/Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php namespace Illuminate\Console;
22

3-
use Illuminate\Container;
3+
use Illuminate\Container\Container;
44
use Symfony\Component\Console\Input\InputOption;
55
use Symfony\Component\Console\Command\Command as SymfonyCommand;
66

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "illuminate/console",
3+
"keywords": ["laravel"],
4+
"authors": [
5+
{
6+
"name": "Taylor Otwell",
7+
"email": "[email protected]"
8+
}
9+
],
10+
"require": {
11+
"symfony/console": "2.2.*"
12+
},
13+
"autoload": {
14+
"psr-0": {
15+
"Illuminate\\Console": ""
16+
}
17+
},
18+
"target-dir": "Illuminate/Console",
19+
"extra": {
20+
"branch-alias": {
21+
"dev-master": "1.2-dev"
22+
}
23+
},
24+
"minimum-stability": "dev"
25+
}

0 commit comments

Comments
 (0)