Skip to content

Commit f3e1f15

Browse files
committed
lib → src
1 parent 4a1a0c8 commit f3e1f15

30 files changed

+5
-5
lines changed

.php_cs.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ return PhpCsFixer\Config::create()
3535
->setFinder(
3636
PhpCsFixer\Finder::create()
3737
->in(__DIR__ . "/examples")
38-
->in(__DIR__ . "/lib")
38+
->in(__DIR__ . "/src")
3939
->in(__DIR__ . "/test")
4040
->in(__DIR__ . "/benchmarks")
4141
);

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PHP_BIN := php
22
COMPOSER_BIN := composer
33

44
COVERAGE = coverage
5-
SRCS = lib test
5+
SRCS = src test
66

77
find_php_files = $(shell find $(1) -type f -name "*.php")
88
src = $(foreach d,$(SRCS),$(call find_php_files,$(d)))

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
},
2525
"autoload": {
2626
"psr-4": {
27-
"Amp\\Mysql\\": "lib/"
27+
"Amp\\Mysql\\": "src"
2828
},
2929
"files": [
30-
"lib/functions.php"
30+
"src/functions.php"
3131
]
3232
},
3333
"autoload-dev": {

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</testsuites>
2020
<filter>
2121
<whitelist>
22-
<directory suffix=".php">lib</directory>
22+
<directory suffix=".php">src</directory>
2323
</whitelist>
2424
</filter>
2525
<listeners>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/Executor.php src/Executor.php

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/Link.php src/Link.php

File renamed without changes.
File renamed without changes.

lib/Pool.php src/Pool.php

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)