Pergunta

When you download CakePHP, these files are present:

.editorconfig, .travis.yml, build.properties, and build.xml

I have never really had to edit these files before or use them for my applications, but I never deleted them. Are these files important? Or can I just delete them?

I am using CakePHP version 2.4.2

Foi útil?

Solução

You can delete them

The files do serve a purpose but they are not used by the application at run time.

What are they for

  • .editorconfig is a file used to help ensure code is consistently formatted.
  • .travis.yml is a file used to configure automated builds using travis - so that the test suite runs automatically for commits and pull requests.
  • build.xml is used to create a new release, and update pear using phing.
  • build.properties is a configuration file containing info used by phing (see above) to parameters pirum - to update the cakephp pear channel.
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top