├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # CakePHP 3 2 | 3 | /vendor/* 4 | /config/app.php 5 | 6 | /tmp/cache/models/* 7 | !/tmp/cache/models/empty 8 | /tmp/cache/persistent/* 9 | !/tmp/cache/persistent/empty 10 | /tmp/cache/views/* 11 | !/tmp/cache/views/empty 12 | /tmp/sessions/* 13 | !/tmp/sessions/empty 14 | /tmp/tests/* 15 | !/tmp/tests/empty 16 | 17 | /logs/* 18 | !/logs/empty 19 | 20 | # CakePHP 2 21 | 22 | /app/tmp/* 23 | /app/Config/core.php 24 | /app/Config/database.php 25 | /vendors/* 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CakePHP 2 | Connection now creates unique read and write drivers if the keys read or write are present in the config regardless of values. 3 | --------------------------------------------------------------------------------