Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Clifford committed Apr 29, 2020
0 parents commit 271d5ad
Show file tree
Hide file tree
Showing 8 changed files with 2,915 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
build
vendor
46 changes: 46 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "timclilfford/fastly_crudl",
"description": "A PHP wrapper for using Fastly API",
"keywords": [
"fastly",
"api",
"php"
],
"authors": [
{
"name": "Tim Clifford",
"email": "[email protected]",
"homepage": "http://amazeelabs.com",
"role": "Developer"
}
],
"require": {
"php" : "~7.3",
"guzzlehttp/guzzle": "^6.5",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit" : ">=8.0",
"squizlabs/php_codesniffer": "^3.0",
"vlucas/phpdotenv": "^4.1"
},
"autoload": {
"psr-4": {
"Fastly\\": "src/"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"Fastly\\Tests\\": "tests"
},
"classmap": [
"tests/"
]
},
"scripts": {
"test": "phpunit"
}
}
Loading

0 comments on commit 271d5ad

Please sign in to comment.