├── .gitignore ├── .gitmodules ├── .travis.yml ├── Doxyfile ├── LICENSE ├── NOTES ├── README.md ├── bin └── genphp ├── composer.json ├── doc ├── Flavor.md └── WrittingFlavor.md ├── package.ini ├── package.xml ├── phpdox.xml ├── phprelease.ini ├── phpunit-ci.xml ├── phpunit.xml ├── screenshots └── screenshot01.png ├── scripts ├── compile ├── genphp.php ├── install.sh ├── install_flavors.sh ├── local_install.sh └── release.sh ├── src ├── Application.php ├── Command │ ├── InitCommand.php │ ├── InstallCommand.php │ ├── ListCommand.php │ └── NewCommand.php ├── Config.php ├── Flavor │ ├── BaseGenerator.php │ ├── Flavor.php │ ├── FlavorLoader.php │ └── GenericGenerator.php ├── GeneratorRunner.php ├── Operation │ ├── CopyDirOperation.php │ ├── CopyFilesOperation.php │ ├── CopyOperation.php │ ├── CreateDirOperation.php │ ├── CreateOperation.php │ ├── GitCloneOperation.php │ ├── Helper.php │ ├── HgCloneOperation.php │ ├── InstallOperation.php │ ├── MoveOperation.php │ ├── Operation.php │ ├── RenderOperation.php │ ├── SVNCheckoutOperation.php │ ├── TouchOperation.php │ ├── WriteJsonOperation.php │ └── WriteYamlOperation.php ├── OperationDispatcher.php └── Path.php └── tests ├── GenPHP ├── ConfigTest.php ├── Flavor │ ├── FlavorLoaderTest.php │ └── FlavorTest.php └── OperationDispatcherTest.php ├── bootstrap.php ├── flavors └── license │ ├── Generator.php │ └── Resource │ ├── LICENSE.BSD │ ├── LICENSE.GPL2 │ ├── LICENSE.MIT │ ├── LICENSE.PHP │ └── LICENSE.ZEND └── helpers.php /.gitignore: -------------------------------------------------------------------------------- 1 | .onion 2 | build 3 | .DS_Store 4 | tests/root 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/.travis.yml -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/README.md -------------------------------------------------------------------------------- /bin/genphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/bin/genphp -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/composer.json -------------------------------------------------------------------------------- /doc/Flavor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/doc/Flavor.md -------------------------------------------------------------------------------- /doc/WrittingFlavor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/doc/WrittingFlavor.md -------------------------------------------------------------------------------- /package.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/package.ini -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/package.xml -------------------------------------------------------------------------------- /phpdox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/phpdox.xml -------------------------------------------------------------------------------- /phprelease.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/phprelease.ini -------------------------------------------------------------------------------- /phpunit-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/phpunit-ci.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/phpunit.xml -------------------------------------------------------------------------------- /screenshots/screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/screenshots/screenshot01.png -------------------------------------------------------------------------------- /scripts/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/scripts/compile -------------------------------------------------------------------------------- /scripts/genphp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/scripts/genphp.php -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/install_flavors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/scripts/install_flavors.sh -------------------------------------------------------------------------------- /scripts/local_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/scripts/local_install.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/InitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Command/InitCommand.php -------------------------------------------------------------------------------- /src/Command/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Command/InstallCommand.php -------------------------------------------------------------------------------- /src/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Command/ListCommand.php -------------------------------------------------------------------------------- /src/Command/NewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Command/NewCommand.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Flavor/BaseGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Flavor/BaseGenerator.php -------------------------------------------------------------------------------- /src/Flavor/Flavor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Flavor/Flavor.php -------------------------------------------------------------------------------- /src/Flavor/FlavorLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Flavor/FlavorLoader.php -------------------------------------------------------------------------------- /src/Flavor/GenericGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Flavor/GenericGenerator.php -------------------------------------------------------------------------------- /src/GeneratorRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/GeneratorRunner.php -------------------------------------------------------------------------------- /src/Operation/CopyDirOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/CopyDirOperation.php -------------------------------------------------------------------------------- /src/Operation/CopyFilesOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/CopyFilesOperation.php -------------------------------------------------------------------------------- /src/Operation/CopyOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/CopyOperation.php -------------------------------------------------------------------------------- /src/Operation/CreateDirOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/CreateDirOperation.php -------------------------------------------------------------------------------- /src/Operation/CreateOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/CreateOperation.php -------------------------------------------------------------------------------- /src/Operation/GitCloneOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/GitCloneOperation.php -------------------------------------------------------------------------------- /src/Operation/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/Helper.php -------------------------------------------------------------------------------- /src/Operation/HgCloneOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/HgCloneOperation.php -------------------------------------------------------------------------------- /src/Operation/InstallOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/InstallOperation.php -------------------------------------------------------------------------------- /src/Operation/MoveOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/MoveOperation.php -------------------------------------------------------------------------------- /src/Operation/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/Operation.php -------------------------------------------------------------------------------- /src/Operation/RenderOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/RenderOperation.php -------------------------------------------------------------------------------- /src/Operation/SVNCheckoutOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/SVNCheckoutOperation.php -------------------------------------------------------------------------------- /src/Operation/TouchOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/TouchOperation.php -------------------------------------------------------------------------------- /src/Operation/WriteJsonOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/WriteJsonOperation.php -------------------------------------------------------------------------------- /src/Operation/WriteYamlOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Operation/WriteYamlOperation.php -------------------------------------------------------------------------------- /src/OperationDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/OperationDispatcher.php -------------------------------------------------------------------------------- /src/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/src/Path.php -------------------------------------------------------------------------------- /tests/GenPHP/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/GenPHP/ConfigTest.php -------------------------------------------------------------------------------- /tests/GenPHP/Flavor/FlavorLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/GenPHP/Flavor/FlavorLoaderTest.php -------------------------------------------------------------------------------- /tests/GenPHP/Flavor/FlavorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/GenPHP/Flavor/FlavorTest.php -------------------------------------------------------------------------------- /tests/GenPHP/OperationDispatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/GenPHP/OperationDispatcherTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/flavors/license/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/flavors/license/Generator.php -------------------------------------------------------------------------------- /tests/flavors/license/Resource/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/flavors/license/Resource/LICENSE.BSD -------------------------------------------------------------------------------- /tests/flavors/license/Resource/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/flavors/license/Resource/LICENSE.GPL2 -------------------------------------------------------------------------------- /tests/flavors/license/Resource/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/flavors/license/Resource/LICENSE.MIT -------------------------------------------------------------------------------- /tests/flavors/license/Resource/LICENSE.PHP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/flavors/license/Resource/LICENSE.PHP -------------------------------------------------------------------------------- /tests/flavors/license/Resource/LICENSE.ZEND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/flavors/license/Resource/LICENSE.ZEND -------------------------------------------------------------------------------- /tests/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c9s/GenPHP/HEAD/tests/helpers.php --------------------------------------------------------------------------------