1
0
mirror of https://github.com/danog/file.git synced 2025-01-22 21:31:15 +01:00

lib → src

This commit is contained in:
Aaron Piotrowski 2019-09-13 22:04:47 -05:00
parent 6b56ad783e
commit 1ca28699c7
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB
21 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
$config = new Amp\CodeStyle\Config(); $config = new Amp\CodeStyle\Config();
$config->getFinder() $config->getFinder()
->in(__DIR__ . '/lib') ->in(__DIR__ . '/src')
->in(__DIR__ . '/test'); ->in(__DIR__ . '/test');
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__; $cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;

View File

@ -44,9 +44,9 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Amp\\File\\": "lib" "Amp\\File\\": "src"
}, },
"files": ["lib/functions.php"] "files": ["src/functions.php"]
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {

View File

@ -19,7 +19,7 @@
</testsuites> </testsuites>
<filter> <filter>
<whitelist> <whitelist>
<directory suffix=".php">lib</directory> <directory suffix=".php">src</directory>
</whitelist> </whitelist>
</filter> </filter>
<logging> <logging>