Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit c6161e8

Browse files
committed
initial commit
0 parents  commit c6161e8

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
composer.lock
2+
vendor/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The Console companion for the Lucid Architecture.

TODO.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
- [ ] Generator
2+
- [ ] Generate Services
3+
- [ ] Generate Features
4+
- [ ] Generate Jobs
5+
- [ ] Specifying Laravel version on installation
6+
- [ ] Documentation
7+
- [ ] Change namespace using CLI
8+
- By extending `Illuminate\Foundation\Console\AppNameCommand`
9+
- [ ] Listing
10+
- [ ] Services
11+
- [ ] Features (per service, and across all services)
12+
- [ ] Jobs per feature
13+
- [ ] Pretty Interface

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "vinelab/lucid-cli",
3+
"description": "The Command Line Interface for Lucid",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Abed Halawi",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"autoload": {
12+
"psr-4": {
13+
"Lucid\\Console\\": "src/"
14+
}
15+
},
16+
"minimum-stability": "stable",
17+
"require": {
18+
"symfony/console": "^3.1",
19+
"symfony/process": "^3.1"
20+
}
21+
}

0 commit comments

Comments
 (0)