Skip to content

Commit 6ea36f0

Browse files
committed
Initial commit
1 parent 4f1cd6c commit 6ea36f0

File tree

10 files changed

+31
-3123
lines changed

10 files changed

+31
-3123
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/phpunit.xml.dist export-ignore
88
/.scrutinizer.yml export-ignore
99
/tests export-ignore
10+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Thumbs.db
1717

1818
# composer itself is not needed
1919
composer.phar
20+
# composer.lock
2021

2122
# Mac DS_Store Files
2223
.DS_Store

.scrutinizer.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ checks:
1313
param_doc_comment_if_not_inferrable: true
1414
overriding_parameter: true
1515
no_short_variable_names:
16-
minimum: '3'
16+
minimum: "3"
1717
no_short_method_names:
18-
minimum: '3'
18+
minimum: "3"
1919
no_long_variable_names:
20-
maximum: '20'
20+
maximum: "20"
2121
no_goto: true
2222
naming_conventions:
23-
local_variable: '^[a-z][a-zA-Z0-9]*$'
23+
local_variable: "^[a-z][a-zA-Z0-9]*$"
2424
abstract_class_name: ^Abstract|Factory$
25-
utility_class_name: 'Utils?$'
26-
constant_name: '^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$'
27-
property_name: '^[a-z][a-zA-Z0-9]*$'
28-
method_name: '^(?:[a-z]|__)[a-zA-Z0-9]*$'
29-
parameter_name: '^[a-z][a-zA-Z0-9]*$'
30-
interface_name: '^[A-Z][a-zA-Z0-9]*Interface$'
31-
type_name: '^[A-Z][a-zA-Z0-9]*$'
32-
exception_name: '^[A-Z][a-zA-Z0-9]*Exception$'
33-
isser_method_name: '^(?:is|has|should|may|supports)'
25+
utility_class_name: "Utils?$"
26+
constant_name: "^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$"
27+
property_name: "^[a-z][a-zA-Z0-9]*$"
28+
method_name: "^(?:[a-z]|__)[a-zA-Z0-9]*$"
29+
parameter_name: "^[a-z][a-zA-Z0-9]*$"
30+
interface_name: "^[A-Z][a-zA-Z0-9]*Interface$"
31+
type_name: "^[A-Z][a-zA-Z0-9]*$"
32+
exception_name: "^[A-Z][a-zA-Z0-9]*Exception$"
33+
isser_method_name: "^(?:is|has|should|may|supports)"
3434
more_specific_types_in_doc_comments: true
3535
fix_use_statements:
3636
remove_unused: true
@@ -49,4 +49,4 @@ build:
4949
analysis:
5050
tests:
5151
override:
52-
- php-scrutinizer-run
52+
- php-scrutinizer-run

.styleci.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@ php:
44
- 7.4
55
- 8.0
66
- 8.1
7+
- 8.2
78

89
install:
9-
# - composer global require "fxp/composer-asset-plugin:~1.4.4"
1010
- export PATH="$HOME/.composer/vendor/bin:$PATH"
1111
- composer update --no-interaction
12-
13-
#script:
14-
# - phpunit

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
{
22
"name": "diecoding/yii2-aws-s3",
33
"description": "Amazon S3 or Amazon Simple Storage Service component for Yii2",
4-
"authors": [
5-
{
6-
"name": "Sugeng Sulistiyawan",
7-
"email": "sugeng.sulistiyawan@gmail.com"
8-
}
9-
],
104
"type": "yii2-extension",
115
"keywords": [
126
"yii2",
@@ -21,6 +15,12 @@
2115
"issues": "https://github.com/sugeng-sulistiyawan/yii2-aws-s3/issues",
2216
"source": "https://github.com/sugeng-sulistiyawan/yii2-aws-s3"
2317
},
18+
"authors": [
19+
{
20+
"name": "Sugeng Sulistiyawan",
21+
"email": "sugeng.sulistiyawan@gmail.com"
22+
}
23+
],
2424
"require": {
2525
"php": ">=7.4.0",
2626
"yiisoft/yii2": "~2.0",

0 commit comments

Comments
 (0)