Skip to content

Commit 4d1822e

Browse files
committed
Updated illuminate component versions
1 parent 7696381 commit 4d1822e

File tree

3 files changed

+1334
-539
lines changed

3 files changed

+1334
-539
lines changed

component/Database/readme.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Config Component
1+
# Database Component
2+
23
This is the database component. It uses the Illuminate database component and **relies on the config component**. If you are using eloquent then it **requires the events component**.
34

45
## Installation
6+
57
Add the component to the list of the Components in your `app/components.php` file.
68

79
```php
@@ -45,4 +47,4 @@ Then access it as thus
4547

4648
```
4749
config('services.name'); // returns "Facebook"
48-
```
50+
```

composer.json

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "creativitykills/nimble",
3-
"description": "Fast Framework built on Laravel components.",
4-
"type": "project",
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Neo Ighodaro",
9-
"email": "[email protected]"
10-
}
11-
],
12-
"require": {
13-
"illuminate/routing": "~5.3",
14-
"illuminate/events": "~5.3",
15-
"illuminate/config": "~5.3",
16-
"illuminate/database": "~5.3",
17-
"illuminate/view": "~5.3",
18-
"illuminate/filesystem": "~5.3",
19-
"illuminate/support": "~5.3",
20-
"illuminate/cache": "~5.3",
21-
"illuminate/redis": "~5.3",
22-
"predis/predis": "^1.0",
23-
"graham-campbell/markdown": "^7.0"
24-
},
25-
"autoload": {
26-
"psr-4": {
27-
"App\\": "app/",
28-
"Nimble\\Component\\": "component/"
29-
}
2+
"name": "creativitykills/nimble",
3+
"description": "Fast Framework built on Laravel components.",
4+
"type": "project",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Neo Ighodaro",
9+
"email": "[email protected]"
3010
}
11+
],
12+
"require": {
13+
"illuminate/routing": "~7.3",
14+
"illuminate/events": "~7.3",
15+
"illuminate/config": "~7.3",
16+
"illuminate/database": "~7.3",
17+
"illuminate/view": "~7.3",
18+
"illuminate/filesystem": "~7.3",
19+
"illuminate/support": "~7.3",
20+
"illuminate/cache": "~7.3",
21+
"illuminate/redis": "~7.3",
22+
"predis/predis": "^1.0",
23+
"graham-campbell/markdown": "^12.0.0"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"App\\": "app/",
28+
"Nimble\\Component\\": "component/"
29+
}
30+
}
3131
}

0 commit comments

Comments
 (0)