Skip to content

Commit 2abd0de

Browse files
committed
Move lib/ to src/
1 parent 7835dbe commit 2abd0de

17 files changed

+7
-7
lines changed

.php_cs.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
$finder = PhpCsFixer\Finder::create()
33
->in([
4-
__DIR__ . '/lib',
4+
__DIR__ . '/src',
55
__DIR__ . '/tests',
66
])
77
;

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"autoload": {
2828
"psr-4": {
29-
"SimpleSAML\\Module\\ldap\\": "lib/"
29+
"SimpleSAML\\Module\\ldap\\": "src/"
3030
}
3131
},
3232
"autoload-dev": {
@@ -40,11 +40,11 @@
4040

4141
"simplesamlphp/assert": "~0.2.13",
4242
"simplesamlphp/composer-module-installer": "~1.1",
43-
"simplesamlphp/simplesamlphp": "^2.0.0-beta.9",
43+
"simplesamlphp/simplesamlphp": "^2.0.0-beta.11",
4444
"symfony/ldap": "^5.4"
4545
},
4646
"require-dev": {
47-
"simplesamlphp/simplesamlphp-test-framework": "^1.1.5"
47+
"simplesamlphp/simplesamlphp-test-framework": "^1.2.1"
4848
},
4949
"support": {
5050
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-ldap/issues",

phpcs.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
By default it is less stringent about long lines than other coding standards
55
</description>
66

7-
<file>lib</file>
7+
<file>src</file>
88
<file>tests</file>
99
<!-- Use this to exclude paths. You can have multiple patterns -->
1010
<!--<exclude-pattern>*/tests/*</exclude-pattern>-->

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
33
<coverage processUncoveredFiles="true">
44
<include>
5-
<directory suffix=".php">./lib</directory>
5+
<directory suffix=".php">./src</directory>
66
</include>
77
<report>
88
<clover outputFile="build/logs/clover.xml"/>

psalm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
reportMixedIssues="false"
77
>
88
<projectFiles>
9-
<directory name="lib" />
9+
<directory name="src" />
1010
<directory name="tests" />
1111
</projectFiles>
1212

File renamed without changes.

0 commit comments

Comments
 (0)