Skip to content

Commit 6c853be

Browse files
committed
🔥 Dread It, Run From It, Destiny Still Arrives
0 parents  commit 6c853be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+6151
-0
lines changed

‎.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2

‎.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/vendor
2+
/.idea
3+
/.vscode
4+
.env
5+
.phpunit.result.cache
6+
.php_cs.cache

‎composer.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "phpjuice/paypal_checkout_sdk",
3+
"description": "Paypal Checkout SDK",
4+
"keywords": [
5+
"paypal",
6+
"checkout"
7+
],
8+
"license": "MIT",
9+
"type": "library",
10+
"autoload": {
11+
"psr-4": {
12+
"PayPal\\Checkout\\": "src/"
13+
}
14+
},
15+
"autoload-dev": {
16+
"psr-4": {
17+
"Tests\\": "tests/"
18+
}
19+
},
20+
"require": {
21+
"php": "^7.2",
22+
"guzzlehttp/psr7": "^1.6",
23+
"guzzlehttp/guzzle": "^6.5"
24+
},
25+
"require-dev": {
26+
"phpunit/phpunit": "^9.0",
27+
"squizlabs/php_codesniffer": "^3.4",
28+
"phpstan/phpstan": "^0.11.5"
29+
},
30+
"minimum-stability": "dev",
31+
"prefer-stable": true,
32+
"scripts": {
33+
"test": "phpunit",
34+
"phpcs": [
35+
"phpcs --config-set show_warnings 0 ",
36+
"phpcs src --standard=PSR2 --extensions=php --encoding=utf-8"
37+
],
38+
"phpcbf": "phpcbf src --standard=PSR2 --extensions=php --encoding=utf-8",
39+
"analyse": "phpstan analyse src tests",
40+
"php-cs-fixer": [
41+
"php-cs-fixer fix src --rules=@PSR2",
42+
"php-cs-fixer fix tests --rules=@PSR2"
43+
]
44+
}
45+
}

0 commit comments

Comments
 (0)