cakephp-v3.6.0.RC1

所属分类:WEB开发
开发工具:PHP
文件大小:1347KB
下载次数:1
上传日期:2018-03-27 07:17:45
上 传 者代下载
说明:  CakePHP是一个用PHP编写的开源Web应用框架,不过其模型是用Ruby on Rails设计的。作为PHP世界的Rails,CakePHP采纳了RoR的许多优秀特性,成熟度较高。在cakephp.org站点的Sites in the wild页面可以看到当前使用CakePHP框架的网站列表。
(CakePHP is an open source Web application framework written in PHP, but its model is designed with Ruby on Rails. As a Rails in the PHP world, CakePHP has adopted many of the excellent features of RoR and has a high maturity. At the Sites in the wild page of the cakephp.org site, you can see a list of the current web sites using the CakePHP framework.)

文件列表:
cakephp (0, 2018-03-24)
cakephp\.mailmap (5695, 2018-03-24)
cakephp\.varci.yml (1247, 2018-03-24)
cakephp\composer.json (3248, 2018-03-24)
cakephp\config (0, 2018-03-24)
cakephp\config\bootstrap.php (764, 2018-03-24)
cakephp\config\cacert.pem (215556, 2018-03-24)
cakephp\config\config.php (732, 2018-03-24)
cakephp\contrib (0, 2018-03-24)
cakephp\contrib\pre-commit (777, 2018-03-24)
cakephp\LICENSE.txt (1204, 2018-03-24)
cakephp\phpcs.xml.dist (288, 2018-03-24)
cakephp\phpstan.neon (2261, 2018-03-24)
cakephp\src (0, 2018-03-24)
cakephp\src\Auth (0, 2018-03-24)
cakephp\src\Auth\AbstractPasswordHasher.php (2351, 2018-03-24)
cakephp\src\Auth\BaseAuthenticate.php (8703, 2018-03-24)
cakephp\src\Auth\BaseAuthorize.php (1894, 2018-03-24)
cakephp\src\Auth\BasicAuthenticate.php (4113, 2018-03-24)
cakephp\src\Auth\ControllerAuthorize.php (2993, 2018-03-24)
cakephp\src\Auth\DefaultPasswordHasher.php (2571, 2018-03-24)
cakephp\src\Auth\DigestAuthenticate.php (9715, 2018-03-24)
cakephp\src\Auth\FallbackPasswordHasher.php (3057, 2018-03-24)
cakephp\src\Auth\FormAuthenticate.php (2962, 2018-03-24)
cakephp\src\Auth\PasswordHasherFactory.php (1987, 2018-03-24)
cakephp\src\Auth\Storage (0, 2018-03-24)
cakephp\src\Auth\Storage\MemoryStorage.php (1597, 2018-03-24)
cakephp\src\Auth\Storage\SessionStorage.php (3497, 2018-03-24)
cakephp\src\Auth\Storage\StorageInterface.php (1354, 2018-03-24)
cakephp\src\Auth\WeakPasswordHasher.php (2032, 2018-03-24)
cakephp\src\basics.php (4959, 2018-03-24)
cakephp\src\Cache (0, 2018-03-24)
cakephp\src\Cache\Cache.php (20889, 2018-03-24)
cakephp\src\Cache\CacheEngine.php (8502, 2018-03-24)
cakephp\src\Cache\CacheRegistry.php (3460, 2018-03-24)
cakephp\src\Cache\composer.json (870, 2018-03-24)
cakephp\src\Cache\Engine (0, 2018-03-24)
cakephp\src\Cache\Engine\ApcEngine.php (6770, 2018-03-24)
cakephp\src\Cache\Engine\FileEngine.php (14723, 2018-03-24)
... ...

CakePHP

Software License Build Status Coverage Status Code Consistency Total Downloads Latest Stable Version

[CakePHP](https://cakephp.org) is a rapid development framework for PHP which uses commonly known design patterns like Associative Data Mapping, Front Controller, and MVC. Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility. ## Installing CakePHP via Composer You can install CakePHP into your project using [Composer](https://getcomposer.org). If you're starting a new project, we recommend using the [app skeleton](https://github.com/cakephp/app) as a starting point. For existing applications you can run the following: ``` bash $ composer require cakephp/cakephp:"~3.5" ``` ## Running Tests Assuming you have PHPUnit installed system wide using one of the methods stated [here](https://phpunit.de/manual/current/en/installation.html), you can run the tests for CakePHP by doing the following: 1. Copy `phpunit.xml.dist` to `phpunit.xml`. 2. Add the relevant database credentials to your `phpunit.xml` if you want to run tests against a non-SQLite datasource. 3. Run `phpunit`. ## Some Handy Links * [CakePHP](https://cakephp.org) - The rapid development PHP framework. * [CookBook](https://book.cakephp.org) - The CakePHP user documentation; start learning here! * [API](https://api.cakephp.org) - A reference to CakePHP's classes. * [Awesome CakePHP](https://github.com/FriendsOfCake/awesome-cakephp) - A list of featured resources around the framework. * [Plugins](https://plugins.cakephp.org) - A repository of extensions to the framework. * [The Bakery](https://bakery.cakephp.org) - Tips, tutorials and articles. * [Community Center](https://community.cakephp.org) - A source for everything community related. * [Training](https://training.cakephp.org) - Join a live session and get skilled with the framework. * [CakeFest](https://cakefest.org) - Don't miss our annual CakePHP conference. * [Cake Software Foundation](https://cakefoundation.org) - Promoting development related to CakePHP. ## Get Support! * [Slack](https://cakesf.herokuapp.com/) - Join us on Slack. * [#cakephp](https://webchat.freenode.net/?channels=#cakephp) on irc.freenode.net - Come chat with us, we have cake. * [Forum](http://discourse.cakephp.org/) - Official CakePHP forum. * [GitHub Issues](https://github.com/cakephp/cakephp/issues) - Got issues? Please tell us! * [Roadmaps](https://github.com/cakephp/cakephp/wiki#roadmaps) - Want to contribute? Get involved! ## Contributing * [CONTRIBUTING.md](.github/CONTRIBUTING.md) - Quick pointers for contributing to the CakePHP project. * [CookBook "Contributing" Section](https://book.cakephp.org/3.0/en/contributing.html) - Details about contributing to the project. # Security If you’ve found a security issue in CakePHP, please use the following procedure instead of the normal bug reporting system. Instead of using the bug tracker, mailing list or IRC please send an email to security [at] cakephp.org. Emails sent to this address go to the CakePHP core team on a private mailing list. For each report, we try to first confirm the vulnerability. Once confirmed, the CakePHP team will take the following actions: - Acknowledge to the reporter that we’ve received the issue, and are working on a fix. We ask that the reporter keep the issue confidential until we announce it. - Get a fix/patch prepared. - Prepare a post describing the vulnerability, and the possible exploits. - Release new versions of all affected versions. - Prominently feature the problem in the release announcement.

近期下载者

相关文件


收藏者