Skip to content

Commit a0c5c2a

Browse files
authored
Add php project with 3rd party library. (#54)
1 parent 89dcc01 commit a0c5c2a

File tree

6 files changed

+58
-0
lines changed

6 files changed

+58
-0
lines changed

numbers-to-words/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
packages/default/n2w/composer.lock
2+
packages/default/n2w/vendor/

numbers-to-words/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Numbers to Words
2+
3+
This project creates an API implemented in PHP and which requires installing a third party library.
4+
5+
### Project file structure
6+
7+
The GitHub project has the file structure that Nimbella uses to deploy the project with minimal configuration.
8+
- There is a single API implemented in [./packages/default/n2w](./packages/default/n2w).
9+
- The required library is specified in [./packages/default/n2w/composer.json](./packages/default/n2w/composer.json).
10+
- There is a [`build.sh`](./packages/default/n2w/build.sh) to install the required library during a Nimbella project deployment.
11+
12+
### Deploy this project to the Nimbella Cloud
13+
14+
If you have the [Nimbella command line tool called `nim`](https://docs.nimbella.com/cli) installed, you can deploy this project directly from GitHub. Or, you can clone this repository and deploy from the clone.
15+
16+
- To deploy from GitHub
17+
18+
`nim project deploy github:nimbella/demo-projects/numbers-to-words`
19+
20+
- If you have cloned the repository
21+
22+
`nim project deploy /path/to/numbers-to-words`
23+
24+
The output of this command will include a link to where the application is running in the cloud for your account.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build.sh
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
composer install
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"require": {
3+
"nineteenfeet/nf-number-to-word": "1.1.1"
4+
}
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
use NFNumberToWord\NumberToWords;
3+
4+
function main(array $args) : array
5+
{
6+
if (!isset($args['number'])) {
7+
return wrap(['error' => 'Please supply a number.']);
8+
}
9+
10+
$number = (int)($args['number']);
11+
$words = (new NumberToWords)->toWords($number);
12+
13+
return [
14+
'body' => $words,
15+
];
16+
}
17+
18+
function wrap(array $args) : array
19+
{
20+
return ["body" => $args];
21+
}

0 commit comments

Comments
 (0)