Skip to content

Commit d956293

Browse files
authored
Merge pull request #39 from PHPCSStandards/feature/more-pear-cleanup
More clean up after removal of PEAR installation support
2 parents 1419b6c + 520aec2 commit d956293

File tree

5 files changed

+3
-9
lines changed

5 files changed

+3
-9
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.gitattributes export-ignore
33
.github/ export-ignore
44
.gitignore export-ignore
5-
package.xml export-ignore
65
phpcs.xml.dist export-ignore
76
phpstan.neon export-ignore
87
phpunit.xml.dist export-ignore

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ A clear and concise description of what you expected to happen.
5454
| PHP version | [e.g., 7.2, 7.4]
5555
| PHP_CodeSniffer version | [e.g., 3.5.5, master]
5656
| Standard | [e.g., PSR2, PSR12, Squiz, custom]
57-
| Install type | [e.g. Composer (global/local), PHAR, PEAR, git clone, other (please expand)]
57+
| Install type | [e.g. Composer (global/local), PHAR, git clone, other (please expand)]
5858

5959
## Additional context
6060
Add any other context about the problem here.

bin/phpcbf.bat

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ REM @author Greg Sherwood <[email protected]>
55
REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
66
REM @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
77

8-
if "%PHP_PEAR_PHP_BIN%" neq "" (
9-
set PHPBIN=%PHP_PEAR_PHP_BIN%
10-
) else set PHPBIN=php
8+
set PHPBIN=php
119

1210
"%PHPBIN%" "%~dp0\phpcbf" %*

bin/phpcs.bat

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ REM @author Greg Sherwood <[email protected]>
55
REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
66
REM @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
77

8-
if "%PHP_PEAR_PHP_BIN%" neq "" (
9-
set PHPBIN=%PHP_PEAR_PHP_BIN%
10-
) else set PHPBIN=php
8+
set PHPBIN=php
119

1210
"%PHPBIN%" "%~dp0\phpcs" %*

scripts/build-phar.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
* @author Greg Sherwood <[email protected]>
1212
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
1313
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
14-
* @link http://pear.php.net/package/PHP_CodeSniffer
1514
*/
1615

1716
use PHP_CodeSniffer\Config;

0 commit comments

Comments
 (0)