├── .coveralls.yml ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE.md ├── README.md ├── ci_instance.php ├── cli ├── composer.json ├── composer.lock ├── config ├── Common.php ├── Dev.php ├── Prod.php ├── Test.php └── _env.php ├── install.php ├── phpunit.php ├── phpunit.xml.dist ├── src ├── .placeholder ├── Command │ ├── Command.php │ ├── Generate.php │ ├── Generate │ │ ├── Migration.php │ │ └── templates │ │ │ └── Migration.txt │ ├── GenerateHelp.php │ ├── Migrate.php │ ├── MigrateHelp.php │ ├── Run.php │ ├── RunHelp.php │ ├── Seed.php │ └── SeedHelp.php └── UserConfig.php ├── tests ├── CliTest.php ├── Command │ ├── CommandTest.php │ ├── GenerateHelpTest.php │ ├── GenerateTest.php │ ├── MigrateHelpTest.php │ ├── MigrateTest.php │ ├── RunHelpTest.php │ ├── RunTest.php │ ├── SeedHelpTest.php │ └── SeedTest.php ├── Fake │ ├── Command │ │ └── Test.php │ ├── migrations │ │ ├── 001_Create_bbs.php │ │ ├── 002_Create_captcha.php │ │ ├── 20150429090001_Create_bbs.php │ │ ├── 20150429100002_Create_captcha.php │ │ ├── 20150429110003_Create_category.php │ │ └── 20150429120004_Create_product.php │ ├── seeds │ │ ├── Table1Seeder.php │ │ ├── Table2Seeder.php │ │ └── Table3Seeder.php │ ├── user_commands │ │ ├── TestCommand.php │ │ └── TestCommandHelp.php │ └── user_commands_bad │ │ └── BadCommand.php ├── UserConfigTest.php └── data │ └── sqlite-database.db └── tmp └── .placeholder /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/README.md -------------------------------------------------------------------------------- /ci_instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/ci_instance.php -------------------------------------------------------------------------------- /cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/cli -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/composer.lock -------------------------------------------------------------------------------- /config/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/config/Common.php -------------------------------------------------------------------------------- /config/Dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/config/Dev.php -------------------------------------------------------------------------------- /config/Prod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/config/Prod.php -------------------------------------------------------------------------------- /config/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/config/Test.php -------------------------------------------------------------------------------- /config/_env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/config/_env.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/install.php -------------------------------------------------------------------------------- /phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/phpunit.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Command.php -------------------------------------------------------------------------------- /src/Command/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Generate.php -------------------------------------------------------------------------------- /src/Command/Generate/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Generate/Migration.php -------------------------------------------------------------------------------- /src/Command/Generate/templates/Migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Generate/templates/Migration.txt -------------------------------------------------------------------------------- /src/Command/GenerateHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/GenerateHelp.php -------------------------------------------------------------------------------- /src/Command/Migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Migrate.php -------------------------------------------------------------------------------- /src/Command/MigrateHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/MigrateHelp.php -------------------------------------------------------------------------------- /src/Command/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Run.php -------------------------------------------------------------------------------- /src/Command/RunHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/RunHelp.php -------------------------------------------------------------------------------- /src/Command/Seed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/Seed.php -------------------------------------------------------------------------------- /src/Command/SeedHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/Command/SeedHelp.php -------------------------------------------------------------------------------- /src/UserConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/src/UserConfig.php -------------------------------------------------------------------------------- /tests/CliTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/CliTest.php -------------------------------------------------------------------------------- /tests/Command/CommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/CommandTest.php -------------------------------------------------------------------------------- /tests/Command/GenerateHelpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/GenerateHelpTest.php -------------------------------------------------------------------------------- /tests/Command/GenerateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/GenerateTest.php -------------------------------------------------------------------------------- /tests/Command/MigrateHelpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/MigrateHelpTest.php -------------------------------------------------------------------------------- /tests/Command/MigrateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/MigrateTest.php -------------------------------------------------------------------------------- /tests/Command/RunHelpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/RunHelpTest.php -------------------------------------------------------------------------------- /tests/Command/RunTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/RunTest.php -------------------------------------------------------------------------------- /tests/Command/SeedHelpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/SeedHelpTest.php -------------------------------------------------------------------------------- /tests/Command/SeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Command/SeedTest.php -------------------------------------------------------------------------------- /tests/Fake/Command/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/Command/Test.php -------------------------------------------------------------------------------- /tests/Fake/migrations/001_Create_bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/migrations/001_Create_bbs.php -------------------------------------------------------------------------------- /tests/Fake/migrations/002_Create_captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/migrations/002_Create_captcha.php -------------------------------------------------------------------------------- /tests/Fake/migrations/20150429090001_Create_bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/migrations/20150429090001_Create_bbs.php -------------------------------------------------------------------------------- /tests/Fake/migrations/20150429100002_Create_captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/migrations/20150429100002_Create_captcha.php -------------------------------------------------------------------------------- /tests/Fake/migrations/20150429110003_Create_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/migrations/20150429110003_Create_category.php -------------------------------------------------------------------------------- /tests/Fake/migrations/20150429120004_Create_product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/migrations/20150429120004_Create_product.php -------------------------------------------------------------------------------- /tests/Fake/seeds/Table1Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/seeds/Table1Seeder.php -------------------------------------------------------------------------------- /tests/Fake/seeds/Table2Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/seeds/Table2Seeder.php -------------------------------------------------------------------------------- /tests/Fake/seeds/Table3Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/seeds/Table3Seeder.php -------------------------------------------------------------------------------- /tests/Fake/user_commands/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/user_commands/TestCommand.php -------------------------------------------------------------------------------- /tests/Fake/user_commands/TestCommandHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/user_commands/TestCommandHelp.php -------------------------------------------------------------------------------- /tests/Fake/user_commands_bad/BadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/Fake/user_commands_bad/BadCommand.php -------------------------------------------------------------------------------- /tests/UserConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/UserConfigTest.php -------------------------------------------------------------------------------- /tests/data/sqlite-database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter-cli/HEAD/tests/data/sqlite-database.db -------------------------------------------------------------------------------- /tmp/.placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------