Browse Source

psr-4 move

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
0c38655217
  1. 4
      composer.json
  2. 0
      framework/.gitignore
  3. 0
      framework/.htaccess
  4. 0
      framework/BaseYii.php
  5. 0
      framework/Yii.php
  6. 0
      framework/assets/jquery.maskedinput.js
  7. 0
      framework/assets/punycode/LICENSE-GPL.txt
  8. 0
      framework/assets/punycode/LICENSE-MIT.txt
  9. 0
      framework/assets/punycode/punycode.js
  10. 0
      framework/assets/punycode/punycode.min.js
  11. 0
      framework/assets/yii.activeForm.js
  12. 0
      framework/assets/yii.captcha.js
  13. 0
      framework/assets/yii.gridView.js
  14. 0
      framework/assets/yii.js
  15. 0
      framework/assets/yii.validation.js
  16. 0
      framework/base/Action.php
  17. 0
      framework/base/ActionEvent.php
  18. 0
      framework/base/ActionFilter.php
  19. 0
      framework/base/Application.php
  20. 0
      framework/base/Arrayable.php
  21. 0
      framework/base/Behavior.php
  22. 0
      framework/base/Component.php
  23. 0
      framework/base/Controller.php
  24. 0
      framework/base/ErrorException.php
  25. 0
      framework/base/ErrorHandler.php
  26. 0
      framework/base/Event.php
  27. 0
      framework/base/Exception.php
  28. 0
      framework/base/Extension.php
  29. 0
      framework/base/Formatter.php
  30. 0
      framework/base/InlineAction.php
  31. 0
      framework/base/InvalidCallException.php
  32. 0
      framework/base/InvalidConfigException.php
  33. 0
      framework/base/InvalidParamException.php
  34. 0
      framework/base/InvalidRouteException.php
  35. 0
      framework/base/MailEvent.php
  36. 0
      framework/base/Model.php
  37. 0
      framework/base/ModelEvent.php
  38. 0
      framework/base/Module.php
  39. 0
      framework/base/NotSupportedException.php
  40. 0
      framework/base/Object.php
  41. 0
      framework/base/Request.php
  42. 0
      framework/base/Response.php
  43. 0
      framework/base/Theme.php
  44. 0
      framework/base/UnknownClassException.php
  45. 0
      framework/base/UnknownMethodException.php
  46. 0
      framework/base/UnknownPropertyException.php
  47. 0
      framework/base/UserException.php
  48. 0
      framework/base/View.php
  49. 0
      framework/base/ViewContextInterface.php
  50. 0
      framework/base/ViewEvent.php
  51. 0
      framework/base/ViewRenderer.php
  52. 0
      framework/base/Widget.php
  53. 0
      framework/behaviors/AutoTimestamp.php
  54. 0
      framework/caching/ApcCache.php
  55. 0
      framework/caching/Cache.php
  56. 0
      framework/caching/ChainedDependency.php
  57. 0
      framework/caching/DbCache.php
  58. 0
      framework/caching/DbDependency.php
  59. 0
      framework/caching/Dependency.php
  60. 0
      framework/caching/DummyCache.php
  61. 0
      framework/caching/ExpressionDependency.php
  62. 0
      framework/caching/FileCache.php
  63. 0
      framework/caching/FileDependency.php
  64. 0
      framework/caching/GroupDependency.php
  65. 0
      framework/caching/MemCache.php
  66. 0
      framework/caching/MemCacheServer.php
  67. 0
      framework/caching/WinCache.php
  68. 0
      framework/caching/XCache.php
  69. 0
      framework/caching/ZendDataCache.php
  70. 0
      framework/captcha/Captcha.php
  71. 0
      framework/captcha/CaptchaAction.php
  72. 0
      framework/captcha/CaptchaAsset.php
  73. 0
      framework/captcha/CaptchaValidator.php
  74. 0
      framework/captcha/SpicyRice.md
  75. 0
      framework/captcha/SpicyRice.ttf
  76. 0
      framework/classes.php
  77. 2
      framework/composer.json
  78. 0
      framework/console/Application.php
  79. 0
      framework/console/Controller.php
  80. 0
      framework/console/Exception.php
  81. 0
      framework/console/Request.php
  82. 0
      framework/console/Response.php
  83. 0
      framework/console/controllers/AssetController.php
  84. 0
      framework/console/controllers/CacheController.php
  85. 0
      framework/console/controllers/FixtureController.php
  86. 0
      framework/console/controllers/HelpController.php
  87. 0
      framework/console/controllers/MessageController.php
  88. 0
      framework/console/controllers/MigrateController.php
  89. 0
      framework/console/runtime/.gitignore
  90. 0
      framework/data/ActiveDataProvider.php
  91. 0
      framework/data/ArrayDataProvider.php
  92. 0
      framework/data/BaseDataProvider.php
  93. 0
      framework/data/DataProviderInterface.php
  94. 0
      framework/data/Pagination.php
  95. 0
      framework/data/Sort.php
  96. 0
      framework/data/SqlDataProvider.php
  97. 0
      framework/db/ActiveQuery.php
  98. 0
      framework/db/ActiveQueryInterface.php
  99. 0
      framework/db/ActiveQueryTrait.php
  100. 0
      framework/db/ActiveRecord.php
  101. Some files were not shown because too many files have changed in this diff Show More

4
composer.json

@ -97,6 +97,7 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"yii\\": "framework/",
"yii\\apidoc\\": "extensions/apidoc/", "yii\\apidoc\\": "extensions/apidoc/",
"yii\\authclient\\": "extensions/authclient/", "yii\\authclient\\": "extensions/authclient/",
"yii\\bootstrap\\": "extensions/bootstrap/", "yii\\bootstrap\\": "extensions/bootstrap/",
@ -113,9 +114,6 @@
"yii\\swiftmailer\\": "extensions/swiftmailer/", "yii\\swiftmailer\\": "extensions/swiftmailer/",
"yii\\sphinx\\": "extensions/sphinx/", "yii\\sphinx\\": "extensions/sphinx/",
"yii\\twig\\": "extensions/twig/" "yii\\twig\\": "extensions/twig/"
},
"psr-0": {
"yii\\": "framework/"
} }
} }
} }

0
framework/yii/.gitignore → framework/.gitignore vendored

0
framework/yii/.htaccess → framework/.htaccess

0
framework/yii/BaseYii.php → framework/BaseYii.php

0
framework/yii/Yii.php → framework/Yii.php

0
framework/yii/assets/jquery.maskedinput.js → framework/assets/jquery.maskedinput.js

0
framework/yii/assets/punycode/LICENSE-GPL.txt → framework/assets/punycode/LICENSE-GPL.txt

0
framework/yii/assets/punycode/LICENSE-MIT.txt → framework/assets/punycode/LICENSE-MIT.txt

0
framework/yii/assets/punycode/punycode.js → framework/assets/punycode/punycode.js

0
framework/yii/assets/punycode/punycode.min.js → framework/assets/punycode/punycode.min.js vendored

0
framework/yii/assets/yii.activeForm.js → framework/assets/yii.activeForm.js

0
framework/yii/assets/yii.captcha.js → framework/assets/yii.captcha.js

0
framework/yii/assets/yii.gridView.js → framework/assets/yii.gridView.js

0
framework/yii/assets/yii.js → framework/assets/yii.js

0
framework/yii/assets/yii.validation.js → framework/assets/yii.validation.js

0
framework/yii/base/Action.php → framework/base/Action.php

0
framework/yii/base/ActionEvent.php → framework/base/ActionEvent.php

0
framework/yii/base/ActionFilter.php → framework/base/ActionFilter.php

0
framework/yii/base/Application.php → framework/base/Application.php

0
framework/yii/base/Arrayable.php → framework/base/Arrayable.php

0
framework/yii/base/Behavior.php → framework/base/Behavior.php

0
framework/yii/base/Component.php → framework/base/Component.php

0
framework/yii/base/Controller.php → framework/base/Controller.php

0
framework/yii/base/ErrorException.php → framework/base/ErrorException.php

0
framework/yii/base/ErrorHandler.php → framework/base/ErrorHandler.php

0
framework/yii/base/Event.php → framework/base/Event.php

0
framework/yii/base/Exception.php → framework/base/Exception.php

0
framework/yii/base/Extension.php → framework/base/Extension.php

0
framework/yii/base/Formatter.php → framework/base/Formatter.php

0
framework/yii/base/InlineAction.php → framework/base/InlineAction.php

0
framework/yii/base/InvalidCallException.php → framework/base/InvalidCallException.php

0
framework/yii/base/InvalidConfigException.php → framework/base/InvalidConfigException.php

0
framework/yii/base/InvalidParamException.php → framework/base/InvalidParamException.php

0
framework/yii/base/InvalidRouteException.php → framework/base/InvalidRouteException.php

0
framework/yii/base/MailEvent.php → framework/base/MailEvent.php

0
framework/yii/base/Model.php → framework/base/Model.php

0
framework/yii/base/ModelEvent.php → framework/base/ModelEvent.php

0
framework/yii/base/Module.php → framework/base/Module.php

0
framework/yii/base/NotSupportedException.php → framework/base/NotSupportedException.php

0
framework/yii/base/Object.php → framework/base/Object.php

0
framework/yii/base/Request.php → framework/base/Request.php

0
framework/yii/base/Response.php → framework/base/Response.php

0
framework/yii/base/Theme.php → framework/base/Theme.php

0
framework/yii/base/UnknownClassException.php → framework/base/UnknownClassException.php

0
framework/yii/base/UnknownMethodException.php → framework/base/UnknownMethodException.php

0
framework/yii/base/UnknownPropertyException.php → framework/base/UnknownPropertyException.php

0
framework/yii/base/UserException.php → framework/base/UserException.php

0
framework/yii/base/View.php → framework/base/View.php

0
framework/yii/base/ViewContextInterface.php → framework/base/ViewContextInterface.php

0
framework/yii/base/ViewEvent.php → framework/base/ViewEvent.php

0
framework/yii/base/ViewRenderer.php → framework/base/ViewRenderer.php

0
framework/yii/base/Widget.php → framework/base/Widget.php

0
framework/yii/behaviors/AutoTimestamp.php → framework/behaviors/AutoTimestamp.php

0
framework/yii/caching/ApcCache.php → framework/caching/ApcCache.php

0
framework/yii/caching/Cache.php → framework/caching/Cache.php

0
framework/yii/caching/ChainedDependency.php → framework/caching/ChainedDependency.php

0
framework/yii/caching/DbCache.php → framework/caching/DbCache.php

0
framework/yii/caching/DbDependency.php → framework/caching/DbDependency.php

0
framework/yii/caching/Dependency.php → framework/caching/Dependency.php

0
framework/yii/caching/DummyCache.php → framework/caching/DummyCache.php

0
framework/yii/caching/ExpressionDependency.php → framework/caching/ExpressionDependency.php

0
framework/yii/caching/FileCache.php → framework/caching/FileCache.php

0
framework/yii/caching/FileDependency.php → framework/caching/FileDependency.php

0
framework/yii/caching/GroupDependency.php → framework/caching/GroupDependency.php

0
framework/yii/caching/MemCache.php → framework/caching/MemCache.php

0
framework/yii/caching/MemCacheServer.php → framework/caching/MemCacheServer.php

0
framework/yii/caching/WinCache.php → framework/caching/WinCache.php

0
framework/yii/caching/XCache.php → framework/caching/XCache.php

0
framework/yii/caching/ZendDataCache.php → framework/caching/ZendDataCache.php

0
framework/yii/captcha/Captcha.php → framework/captcha/Captcha.php

0
framework/yii/captcha/CaptchaAction.php → framework/captcha/CaptchaAction.php

0
framework/yii/captcha/CaptchaAsset.php → framework/captcha/CaptchaAsset.php

0
framework/yii/captcha/CaptchaValidator.php → framework/captcha/CaptchaValidator.php

0
framework/yii/captcha/SpicyRice.md → framework/captcha/SpicyRice.md

0
framework/yii/captcha/SpicyRice.ttf → framework/captcha/SpicyRice.ttf

0
framework/yii/classes.php → framework/classes.php

2
framework/composer.json

@ -59,6 +59,6 @@
"michelf/php-markdown": "1.3.*" "michelf/php-markdown": "1.3.*"
}, },
"autoload": { "autoload": {
"psr-0": { "yii\\": "" } "psr-4": { "yii\\": "" }
} }
} }

0
framework/yii/console/Application.php → framework/console/Application.php

0
framework/yii/console/Controller.php → framework/console/Controller.php

0
framework/yii/console/Exception.php → framework/console/Exception.php

0
framework/yii/console/Request.php → framework/console/Request.php

0
framework/yii/console/Response.php → framework/console/Response.php

0
framework/yii/console/controllers/AssetController.php → framework/console/controllers/AssetController.php

0
framework/yii/console/controllers/CacheController.php → framework/console/controllers/CacheController.php

0
framework/yii/console/controllers/FixtureController.php → framework/console/controllers/FixtureController.php

0
framework/yii/console/controllers/HelpController.php → framework/console/controllers/HelpController.php

0
framework/yii/console/controllers/MessageController.php → framework/console/controllers/MessageController.php

0
framework/yii/console/controllers/MigrateController.php → framework/console/controllers/MigrateController.php

0
framework/yii/console/runtime/.gitignore → framework/console/runtime/.gitignore vendored

0
framework/yii/data/ActiveDataProvider.php → framework/data/ActiveDataProvider.php

0
framework/yii/data/ArrayDataProvider.php → framework/data/ArrayDataProvider.php

0
framework/yii/data/BaseDataProvider.php → framework/data/BaseDataProvider.php

0
framework/yii/data/DataProviderInterface.php → framework/data/DataProviderInterface.php

0
framework/yii/data/Pagination.php → framework/data/Pagination.php

0
framework/yii/data/Sort.php → framework/data/Sort.php

0
framework/yii/data/SqlDataProvider.php → framework/data/SqlDataProvider.php

0
framework/yii/db/ActiveQuery.php → framework/db/ActiveQuery.php

0
framework/yii/db/ActiveQueryInterface.php → framework/db/ActiveQueryInterface.php

0
framework/yii/db/ActiveQueryTrait.php → framework/db/ActiveQueryTrait.php

0
framework/yii/db/ActiveRecord.php → framework/db/ActiveRecord.php

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save