Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit 3d2b950

Browse files
author
Manuele Vaccari
committed
Return to old code style
1 parent 39f4e32 commit 3d2b950

3 files changed

Lines changed: 45 additions & 43 deletions

File tree

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ root = true
55
[*]
66
charset = utf-8
77
end_of_line = lf
8-
indent_size = 4
8+
indent_size = 2
99
indent_style = space
1010
insert_final_newline = true
1111
trim_trailing_whitespace = true

composer.json

Lines changed: 34 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
{
2-
"name": "excelwebzone/recaptcha-bundle",
3-
"description": "This bundle provides easy reCAPTCHA form field integration",
4-
"keywords": ["recaptcha"],
5-
"homepage": "https://github.com/excelwebzone/EWZRecaptchaBundle",
6-
"type": "symfony-bundle",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Michael H. Arieli",
11-
"email": "excelwebzone@gmail.com",
12-
"homepage": "http://excelwebzone.com/"
13-
}
14-
],
15-
"require": {
16-
"php": ">=5.6 || ^7.0",
17-
"google/recaptcha": "^1.1",
18-
"symfony/form": "^2.8 || ^3.0 || ^4.0",
19-
"symfony/validator": "^2.8 || ^3.0 || ^4.0",
20-
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0"
21-
},
22-
"require-dev": {
23-
"phpunit/phpunit": "^5 || ^6 || ^7"
24-
},
25-
"autoload": {
26-
"psr-4": {
27-
"EWZ\\Bundle\\RecaptchaBundle\\": "src"
28-
}
29-
},
30-
"autoload-dev": {
31-
"psr-4": {
32-
"EWZ\\Tests\\Bundle\\RecaptchaBundle\\": "tests"
33-
}
2+
"name": "excelwebzone/recaptcha-bundle",
3+
"description": "This bundle provides easy reCAPTCHA form field integration",
4+
"keywords": [
5+
"recaptcha"
6+
],
7+
"homepage": "https://github.com/excelwebzone/EWZRecaptchaBundle",
8+
"type": "symfony-bundle",
9+
"license": "MIT",
10+
"authors": [
11+
{
12+
"name": "Michael H. Arieli",
13+
"email": "excelwebzone@gmail.com",
14+
"homepage": "http://excelwebzone.com/"
3415
}
16+
],
17+
"require": {
18+
"php": ">=5.6 || ^7.0",
19+
"google/recaptcha": "^1.1",
20+
"symfony/form": "^2.8 || ^3.0 || ^4.0",
21+
"symfony/validator": "^2.8 || ^3.0 || ^4.0",
22+
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0"
23+
},
24+
"require-dev": {
25+
"phpunit/phpunit": "^5 || ^6 || ^7"
26+
},
27+
"autoload": {
28+
"psr-4": {
29+
"EWZ\\Bundle\\RecaptchaBundle\\": "src"
30+
}
31+
},
32+
"autoload-dev": {
33+
"psr-4": {
34+
"EWZ\\Tests\\Bundle\\RecaptchaBundle\\": "tests"
35+
}
36+
}
3537
}

phpunit.xml.dist

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
bootstrap="./tests/bootstrap.php"
66
colors="true">
77

8-
<testsuites>
9-
<testsuite name="EWZRecaptchaBundle">
10-
<directory>tests</directory>
11-
</testsuite>
12-
</testsuites>
8+
<testsuites>
9+
<testsuite name="EWZRecaptchaBundle">
10+
<directory>tests</directory>
11+
</testsuite>
12+
</testsuites>
1313

14-
<filter>
15-
<whitelist>
16-
<directory suffix=".php">src</directory>
17-
</whitelist>
18-
</filter>
14+
<filter>
15+
<whitelist>
16+
<directory suffix=".php">src</directory>
17+
</whitelist>
18+
</filter>
1919

2020
</phpunit>

0 commit comments

Comments
 (0)