├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── bin └── eecli ├── box.json ├── composer.json ├── sample.eecli.php ├── src ├── Application.php ├── CodeIgniter │ ├── BootableInterface.php │ ├── ConsoleOutput.php │ ├── Controller │ │ ├── AdminContentController.php │ │ ├── ContentFilesController.php │ │ ├── DesignController.php │ │ └── MembersController.php │ ├── Cp.php │ └── Functions.php ├── Command │ ├── AbstractCreateFieldCommand.php │ ├── AbstractCreateFieldFieldpackOptionsCommand.php │ ├── AbstractCreateFieldNativeOptionsCommand.php │ ├── ClearCeCacheCommand.php │ ├── ClearEECacheCommand.php │ ├── ClearStashCacheCommand.php │ ├── Command.php │ ├── ConsoleCommand.php │ ├── Contracts │ │ ├── Conditional.php │ │ ├── ExemptFromBootstrap.php │ │ ├── HasExamples.php │ │ ├── HasLongDescription.php │ │ ├── HasOptionExamples.php │ │ └── HasRuntimeOptions.php │ ├── CreateCategoryCommand.php │ ├── CreateCategoryGroupCommand.php │ ├── CreateChannelCommand.php │ ├── CreateFieldAssetsCommand.php │ ├── CreateFieldCheckboxesCommand.php │ ├── CreateFieldDateCommand.php │ ├── CreateFieldFieldpackCheckboxesCommand.php │ ├── CreateFieldFieldpackDropdownCommand.php │ ├── CreateFieldFieldpackListCommand.php │ ├── CreateFieldFieldpackMultiselectCommand.php │ ├── CreateFieldFieldpackPillCommand.php │ ├── CreateFieldFieldpackRadioCommand.php │ ├── CreateFieldFieldpackSwitchCommand.php │ ├── CreateFieldFileCommand.php │ ├── CreateFieldGridCommand.php │ ├── CreateFieldGroupCommand.php │ ├── CreateFieldMatrixCommand.php │ ├── CreateFieldMultiselectCommand.php │ ├── CreateFieldPlayaCommand.php │ ├── CreateFieldRadioCommand.php │ ├── CreateFieldRelationshipCommand.php │ ├── CreateFieldRteCommand.php │ ├── CreateFieldSelectCommand.php │ ├── CreateFieldStoreProductDetailsCommand.php │ ├── CreateFieldTextCommand.php │ ├── CreateFieldTextareaCommand.php │ ├── CreateFieldWygwamCommand.php │ ├── CreateGlobalVariableCommand.php │ ├── CreateMemberCommand.php │ ├── CreateMemberGroupCommand.php │ ├── CreateSnippetCommand.php │ ├── CreateStatusCommand.php │ ├── CreateStatusGroupCommand.php │ ├── CreateTemplateCommand.php │ ├── CreateTemplateGroupCommand.php │ ├── CreateUploadPrefCommand.php │ ├── DbDumpCommand.php │ ├── DeleteEntryCommand.php │ ├── DeleteGlobalVariableCommand.php │ ├── DeleteSnippetCommand.php │ ├── DeleteTemplateCommand.php │ ├── DeleteTemplateGroupCommand.php │ ├── GenerateAddonCommand.php │ ├── GenerateCommandCommand.php │ ├── GenerateHtaccessCommand.php │ ├── GithubAddonInstallerCommand.php │ ├── InitCommand.php │ ├── ShowActionsCommand.php │ ├── ShowCategoryGroupsCommand.php │ ├── ShowConfigCommand.php │ ├── ShowFieldGroupsCommand.php │ ├── ShowFieldsCommand.php │ ├── ShowMembersCommand.php │ ├── ShowTemplatesCommand.php │ ├── ShowVersionCommand.php │ ├── SyncTemplatesCommand.php │ └── UpdateAddonsCommand.php ├── Console │ └── GlobalArgvInput.php ├── Db │ ├── ConnectionTester.php │ ├── MysqlTester.php │ └── MysqliTester.php ├── Handlebars │ └── Loader │ │ └── FilesystemLoader.php ├── bootstrap.php ├── stub.php └── templates │ ├── Command.php.handlebars │ └── htaccess.handlebars └── tests.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | eecli.phar 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/README.md -------------------------------------------------------------------------------- /bin/eecli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/bin/eecli -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/composer.json -------------------------------------------------------------------------------- /sample.eecli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/sample.eecli.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/CodeIgniter/BootableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/BootableInterface.php -------------------------------------------------------------------------------- /src/CodeIgniter/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/ConsoleOutput.php -------------------------------------------------------------------------------- /src/CodeIgniter/Controller/AdminContentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/Controller/AdminContentController.php -------------------------------------------------------------------------------- /src/CodeIgniter/Controller/ContentFilesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/Controller/ContentFilesController.php -------------------------------------------------------------------------------- /src/CodeIgniter/Controller/DesignController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/Controller/DesignController.php -------------------------------------------------------------------------------- /src/CodeIgniter/Controller/MembersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/Controller/MembersController.php -------------------------------------------------------------------------------- /src/CodeIgniter/Cp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/Cp.php -------------------------------------------------------------------------------- /src/CodeIgniter/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/CodeIgniter/Functions.php -------------------------------------------------------------------------------- /src/Command/AbstractCreateFieldCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/AbstractCreateFieldCommand.php -------------------------------------------------------------------------------- /src/Command/AbstractCreateFieldFieldpackOptionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/AbstractCreateFieldFieldpackOptionsCommand.php -------------------------------------------------------------------------------- /src/Command/AbstractCreateFieldNativeOptionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/AbstractCreateFieldNativeOptionsCommand.php -------------------------------------------------------------------------------- /src/Command/ClearCeCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ClearCeCacheCommand.php -------------------------------------------------------------------------------- /src/Command/ClearEECacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ClearEECacheCommand.php -------------------------------------------------------------------------------- /src/Command/ClearStashCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ClearStashCacheCommand.php -------------------------------------------------------------------------------- /src/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Command.php -------------------------------------------------------------------------------- /src/Command/ConsoleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ConsoleCommand.php -------------------------------------------------------------------------------- /src/Command/Contracts/Conditional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Contracts/Conditional.php -------------------------------------------------------------------------------- /src/Command/Contracts/ExemptFromBootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Contracts/ExemptFromBootstrap.php -------------------------------------------------------------------------------- /src/Command/Contracts/HasExamples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Contracts/HasExamples.php -------------------------------------------------------------------------------- /src/Command/Contracts/HasLongDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Contracts/HasLongDescription.php -------------------------------------------------------------------------------- /src/Command/Contracts/HasOptionExamples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Contracts/HasOptionExamples.php -------------------------------------------------------------------------------- /src/Command/Contracts/HasRuntimeOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/Contracts/HasRuntimeOptions.php -------------------------------------------------------------------------------- /src/Command/CreateCategoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateCategoryCommand.php -------------------------------------------------------------------------------- /src/Command/CreateCategoryGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateCategoryGroupCommand.php -------------------------------------------------------------------------------- /src/Command/CreateChannelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateChannelCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldAssetsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldAssetsCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldCheckboxesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldCheckboxesCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldDateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldDateCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackCheckboxesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackCheckboxesCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackDropdownCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackDropdownCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackListCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackMultiselectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackMultiselectCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackPillCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackPillCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackRadioCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackRadioCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFieldpackSwitchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFieldpackSwitchCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldFileCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldFileCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldGridCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldGridCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldGroupCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldMatrixCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldMatrixCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldMultiselectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldMultiselectCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldPlayaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldPlayaCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldRadioCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldRadioCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldRelationshipCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldRelationshipCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldRteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldRteCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldSelectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldSelectCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldStoreProductDetailsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldStoreProductDetailsCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldTextCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldTextCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldTextareaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldTextareaCommand.php -------------------------------------------------------------------------------- /src/Command/CreateFieldWygwamCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateFieldWygwamCommand.php -------------------------------------------------------------------------------- /src/Command/CreateGlobalVariableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateGlobalVariableCommand.php -------------------------------------------------------------------------------- /src/Command/CreateMemberCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateMemberCommand.php -------------------------------------------------------------------------------- /src/Command/CreateMemberGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateMemberGroupCommand.php -------------------------------------------------------------------------------- /src/Command/CreateSnippetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateSnippetCommand.php -------------------------------------------------------------------------------- /src/Command/CreateStatusCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateStatusCommand.php -------------------------------------------------------------------------------- /src/Command/CreateStatusGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateStatusGroupCommand.php -------------------------------------------------------------------------------- /src/Command/CreateTemplateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateTemplateCommand.php -------------------------------------------------------------------------------- /src/Command/CreateTemplateGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateTemplateGroupCommand.php -------------------------------------------------------------------------------- /src/Command/CreateUploadPrefCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/CreateUploadPrefCommand.php -------------------------------------------------------------------------------- /src/Command/DbDumpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/DbDumpCommand.php -------------------------------------------------------------------------------- /src/Command/DeleteEntryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/DeleteEntryCommand.php -------------------------------------------------------------------------------- /src/Command/DeleteGlobalVariableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/DeleteGlobalVariableCommand.php -------------------------------------------------------------------------------- /src/Command/DeleteSnippetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/DeleteSnippetCommand.php -------------------------------------------------------------------------------- /src/Command/DeleteTemplateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/DeleteTemplateCommand.php -------------------------------------------------------------------------------- /src/Command/DeleteTemplateGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/DeleteTemplateGroupCommand.php -------------------------------------------------------------------------------- /src/Command/GenerateAddonCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/GenerateAddonCommand.php -------------------------------------------------------------------------------- /src/Command/GenerateCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/GenerateCommandCommand.php -------------------------------------------------------------------------------- /src/Command/GenerateHtaccessCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/GenerateHtaccessCommand.php -------------------------------------------------------------------------------- /src/Command/GithubAddonInstallerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/GithubAddonInstallerCommand.php -------------------------------------------------------------------------------- /src/Command/InitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/InitCommand.php -------------------------------------------------------------------------------- /src/Command/ShowActionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowActionsCommand.php -------------------------------------------------------------------------------- /src/Command/ShowCategoryGroupsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowCategoryGroupsCommand.php -------------------------------------------------------------------------------- /src/Command/ShowConfigCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowConfigCommand.php -------------------------------------------------------------------------------- /src/Command/ShowFieldGroupsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowFieldGroupsCommand.php -------------------------------------------------------------------------------- /src/Command/ShowFieldsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowFieldsCommand.php -------------------------------------------------------------------------------- /src/Command/ShowMembersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowMembersCommand.php -------------------------------------------------------------------------------- /src/Command/ShowTemplatesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowTemplatesCommand.php -------------------------------------------------------------------------------- /src/Command/ShowVersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/ShowVersionCommand.php -------------------------------------------------------------------------------- /src/Command/SyncTemplatesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/SyncTemplatesCommand.php -------------------------------------------------------------------------------- /src/Command/UpdateAddonsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Command/UpdateAddonsCommand.php -------------------------------------------------------------------------------- /src/Console/GlobalArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Console/GlobalArgvInput.php -------------------------------------------------------------------------------- /src/Db/ConnectionTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Db/ConnectionTester.php -------------------------------------------------------------------------------- /src/Db/MysqlTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Db/MysqlTester.php -------------------------------------------------------------------------------- /src/Db/MysqliTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Db/MysqliTester.php -------------------------------------------------------------------------------- /src/Handlebars/Loader/FilesystemLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/Handlebars/Loader/FilesystemLoader.php -------------------------------------------------------------------------------- /src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/bootstrap.php -------------------------------------------------------------------------------- /src/stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/stub.php -------------------------------------------------------------------------------- /src/templates/Command.php.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/templates/Command.php.handlebars -------------------------------------------------------------------------------- /src/templates/htaccess.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/src/templates/htaccess.handlebars -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsanchez/eecli/HEAD/tests.sh --------------------------------------------------------------------------------