reed-jones/neocities
Composer 安装命令:
composer require reed-jones/neocities
包简介
A thin client wrapper around the neocities api
关键字:
README 文档
README
Neocities-php is a PHP wrapper of the Neocities.org API. Now with Jigsaw integration
Installation
composer require reed-jones/neocities
Usage
// First we include the library use ReedJones\Neocities\Neocities; // Then we log in using either username/password or api key $neocities = new Neocities([ 'username' => 'YOUR_USERNAME', 'password' => 'YOUR_PASSWORD' ]); // or $neocities = new Neocities([ 'apiKey' => 'YOUR_API_KEY' ]);
Uploading Files
To upload files pass an array with the key being the desired upload name on the server, and the value being the path to the local file.
$result = $neocities->upload([ 'hello.html' => './local.html', 'about.html' => './AboutMe.html' ]); var_dump($result);
Deleting Files
To delete files from the server, simply pass an array of the files you wish to delete.
$result = $neocities->delete([ 'hello.html', 'about.html' ]); var_dump($result);
Listing All Files On Your Site
$result = $neocities->list(); var_dump($result);
Getting Information About Your Site
$result = $neocities->info(); var_dump($result);
Getting Your API Key
If you are logging in using your username/password, you can use this to retrieve your API key.
$result = $neocities->key(); var_dump($result);
Jigsaw Integration
Neocities-PHP can be integrated with Tighten's Jigsaw. After installing this packing into your jigsaw project, Register the plugin in bootstrap.php
// bootstrap.php Jigsaw::mixin(new \ReedJones\Neocities\NeocitiesDeployment($container));
With this in place, all that is left to do is add your neocities api key your your .env file (if id doesn't exist, create it)
# .env NEO_CITIES_API_KEY="YOUR_API_KEY_HERE"
Now to build & deploy from the command line, run the new jigsaw deploy command which accepts the same parameters as the build command.
# Build & deploy your 'local' build
./vendor/bin/jigsaw deploy
# Build & deploy your 'production' build
./vendor/bin/jigsaw deploy production
Jigsaw Programmatic Usage
After following the above instructions for setting up a neocities deployment with jigsaw, a deployToNeocities method is available for programmatic use from bootstrap.php (or elsewhere). An Example:
// Programmatic API Usage $events->afterBuild(function (Jigsaw $jigsaw) { if ($jigsaw->getEnvironment() === 'production') { // Automatic deployment after all production builds $jigsaw->deployToNeocities(); } });
reed-jones/neocities 适用场景与选型建议
reed-jones/neocities 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 106 次下载、GitHub Stars 达 19, 最近一次更新时间为 2018 年 09 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「neocities」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 reed-jones/neocities 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 reed-jones/neocities 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 reed-jones/neocities 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Neocities deployment starter template for Tightens Jigsaw
A lightweight plain-PHP framework for database-backed CRUD APIs.
Modern, strongly-typed, PSR-compliant PHP client for the WeFact v2 API.
PHP SDK for the Enconvert file conversion API
支付宝开放平台v3协议文档,支持最新版PHP8+
统计信息
- 总下载量: 106
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 19
- 点击次数: 6
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: ISC
- 更新时间: 2018-09-08