Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 2eb1c13

Browse files
author
Ben Smith
authored
Merge pull request #6 from adaamz/patch-1
readme: fixed typo dependancies -> dependencies
2 parents f7b7db0 + 153f490 commit 2eb1c13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎README.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![The Serverless LAMP stack](repository-resources/serverless-lamp-stack.png "The Serverless LAMP stack")
44

55
## Examples ##
6-
- [0.1-SimplePhpFunction](https://github.com/bls20AWS/serverelss-php/tree/master/0.1-SimplePhpFunction) a very simple implementation of a PHP Lambda function. This uses a custom rumtime bootstrap and vendor dependancies as layers.
6+
- [0.1-SimplePhpFunction](https://github.com/bls20AWS/serverelss-php/tree/master/0.1-SimplePhpFunction) a very simple implementation of a PHP Lambda function. This uses a custom rumtime bootstrap and vendor dependencies as layers.
77

88

99
## Community Curated PHP / Serverless resources ##
@@ -12,7 +12,7 @@
1212
1313

1414
## Creating your custom PHP runtime ##
15-
Follow the instructions below to create Lambda layers to hold your PHP custom runtime and library dependancies. Include these layers in your PHP Lambda functions with the Lambda runtime set to `provided`.
15+
Follow the instructions below to create Lambda layers to hold your PHP custom runtime and library dependencies. Include these layers in your PHP Lambda functions with the Lambda runtime set to `provided`.
1616

1717
### Compiling PHP ###
1818
:information_source: PHP 7.3.0 has been used for this example.
@@ -73,7 +73,7 @@ zip -r runtime.zip bin bootstrap
7373

7474
:information_source: <font size="2">Consult the [Runtime API documentation](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-api.html) as you build your own production custom runtimes to ensure that you’re handling all eventualities as gracefully as possible.</font>
7575

76-
### Creating dependancies ###
76+
### Creating dependencies ###
7777

7878
[This bootstrap file](/bootstrap) uses [Guzzle](https://github.com/guzzle/guzzle), a popular PHP HTTP client, to make requests to the custom runtime API. The Guzzle package is installed using [Composer package manager](https://getcomposer.org/).
7979

@@ -87,7 +87,7 @@ curl -sS https://getcomposer.org/installer | ./bin/php
8787
```bash
8888
./bin/php composer.phar require guzzlehttp/guzzle
8989
```
90-
3. Package the dependancies into a `vendor.zip` binary
90+
3. Package the dependencies into a `vendor.zip` binary
9191
```bash
9292
zip -r vendor.zip vendor/
9393
```

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /