tvision/rackspace-cloud-files-bundle
Composer 安装命令:
composer require tvision/rackspace-cloud-files-bundle
包简介
Provides rackspace cloud files support for #Symfony2 Bundles
关键字:
README 文档
README
Introduction
Rackspace Cloud Files bundle is a simple and easy way to use the RackspaceCloudFilesStreamWrapper library with Symfony2 applications,
but it has also some facilities for handle the static file with the rackspace cloud files.
This Bundle borns as fork of the escapestudios/EscapeRackspaceCloudFilesBundle, now these two bundles are very different.
see the blog post for more detail
http://www.welcometothebundle.com/symfony2-assets-on-rackspace-cloud-files/
Installation (old school)
see the blog post for more detail
deps:
[php-opencloud] git=git://github.com/rackspace/php-opencloud.git target=/rackspace/php-opencloud [RackspaceCloudFilesBundle] git=https://github.com/tvision/RackspaceCloudFilesBundle.git target=/bundles/Tvision/RackspaceCloudFilesBundle [RackspaceCloudFilesStreamWrapper] git=https://github.com/tvision/RackspaceCloudFilesStreamWrapper.git target=tvision-rackspace-cloud-files-streamwrapper
app/autoload.php
$loader->registerNamespaces(array( //other namespaces 'Tvision\\RackspaceCloudFilesStreamWrapper' => __DIR__.'/../vendor/tvision-rackspace-cloud-files-streamwrapper/src', 'Tvision\\RackspaceCloudFilesBundle' => __DIR__.'/../vendor/bundles', ));
app/AppKernel.php
public function registerBundles() { return array( //other bundles new Tvision\RackspaceCloudFilesBundle\TvisionRackspaceCloudFilesBundle(), ); ...
Installation Composer
- 1 First, add the dependent bundle to the vendor/bundles directory. Add the following lines to the composer.json file
"require": { // .. "tvision/rackspace-cloud-files-bundle": "~3.0", // .. }
-
2 Then run
composer install -
3 Then add in your
app/AppKernel
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Tvision\RackspaceCloudFilesBundle\TvisionRackspaceCloudFilesBundle(), // ...
Configuration
app/config/config.yml
# Rackspace Cloud Files configuration tvision_rackspace_cloud_files: stream_wrapper: register: true # do you want to register stream wrapper? protocol_name: rscf auth: username: YOUR-USERNAME api_key: YOUR-API-KEY host: https://lon.identity.api.rackspacecloud.com/v2.0 # or https://identity.api.rackspacecloud.com/v2.0 (usa) container_name: YOUR-CONTAINER-NAME region: LON
Service(s)
Get the Rackspace service to work with:
$auth = $this->get('tvision_rackspace_cloud_files.service')
Usage example without assetic
$conn = $this->get('tvision_rackspace_cloud_files.service'); $container = $conn->apiGetContainer('container-name');
or
$container = $this->get('tvision_rackspace_cloud_files.service')->apiGetContainer('container-name'); echo "<pre>"; printf("Container %s has %d object(s) consuming %d bytes\n", $container->name, $container->count, $container->bytes); echo "</pre>";
Usage example with assetic
see
http://www.welcometothebundle.com/symfony2-assets-on-rackspace-cloud-files/
Installing bundles assets (public directory) to cloudfiles with rscf:assets:install special console command
app/console rscf:assets:install rscf://my_container/my/path
This will copy assets just like the assets:install command would but directly to cloudfiles.
Note: For those wondering why this command could be needed, note that assetic mainly handles js/css assets, and when
not using the cssembed filter, you still need to install images to your cloudfiles container. This command prevent you
from having to do that by hand.
Installing application assets (public directory) to cloudfiles with assetic:install special console command
add this into the config.yml
assetic: debug: false use_controller: false write_to: rsfc://%rackspace_container_name%
Type to the console
app/console assetic:dump
Requirements
-
PHP > 5.3.0
-
rackspace/php-opencloud.git
-
tvision/RackspaceCloudFilesStreamWrapper
-
Symfony2
Contribute
Please feel free to use the Git issue tracking to report back any problems or errors. You're encouraged to clone the repository and send pull requests if you'd like to contribute actively in developing the library. than add your name to this file under the contributor section
Contributor
-
thanks for cystbear for the tips
-
the bundle is a reengeneering of the escapestudios/EscapeRackspaceCloudFilesBundle
-
liuggio
-
benjamindulau
-
toretto460
License
This bundle is under the MIT license. See the complete license in the bundle:
Resources/meta/LICENSE
tvision/rackspace-cloud-files-bundle 适用场景与选型建议
tvision/rackspace-cloud-files-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.41k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2013 年 04 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cloud」 「assetic」 「rackspace」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tvision/rackspace-cloud-files-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tvision/rackspace-cloud-files-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tvision/rackspace-cloud-files-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A SDK for working with B2 cloud storage.
Small library to access Microsoft Windows Azure Blob Storage with a Service or a StreamWrapper.
Rackspace package containing Rackspace/OpenStack components for the DreamFactory(tm) core.
UCloud Resource (Cloud) Storage SDK for PHP
The flysystem adapter for yandex disk rest api.
Course Hero's Assetic tools bundle
统计信息
- 总下载量: 7.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-04-22