Skip to content

Commit 3099b0c

Browse files
committed
Move lib/ to src/
1 parent 6c08605 commit 3099b0c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"autoload": {
2424
"psr-4": {
25-
"SimpleSAML\\Module\\sqlauth\\": "lib/"
25+
"SimpleSAML\\Module\\sqlauth\\": "src/"
2626
}
2727
},
2828
"autoload-dev": {
@@ -32,12 +32,12 @@
3232
},
3333
"require": {
3434
"php": ">=7.4 || ^8.0",
35-
"simplesamlphp/assert": "^0.2.7",
35+
"simplesamlphp/assert": "^0.2.13",
3636
"simplesamlphp/composer-module-installer": "~1.1",
37-
"simplesamlphp/simplesamlphp": "^2.0.0-beta.2"
37+
"simplesamlphp/simplesamlphp": "^2.0.0-beta.11"
3838
},
3939
"require-dev": {
40-
"simplesamlphp/simplesamlphp-test-framework": "^1.1.0"
40+
"simplesamlphp/simplesamlphp-test-framework": "^1.2.1"
4141
},
4242
"support": {
4343
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-sqlauth/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
</projectFiles>
1111

1212
<issueHandlers>

0 commit comments

Comments
 (0)