Skip to content

Commit

Permalink
move lib > src
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jun 14, 2022
1 parent 85ce5ce commit 236e48d
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in([
__DIR__ . '/lib',
__DIR__ . '/src',
__DIR__ . '/tests',
__DIR__ . '/www',
])
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\negotiate\\": "lib/"
"SimpleSAML\\Module\\negotiate\\": "src/"
}
},
"autoload-dev": {
Expand All @@ -35,11 +35,11 @@
"ext-krb5": ">=1.1.4",

"simplesamlphp/composer-module-installer": "~1.1",
"simplesamlphp/simplesamlphp": "^2.0.0-beta.2",
"simplesamlphp/simplesamlphp": "^2.0.0-beta.11",
"simplesamlphp/simplesamlphp-module-ldap": "^1.2"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.1.4"
"simplesamlphp/simplesamlphp-test-framework": "^1.2.1"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate/issues",
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
By default it is less stringent about long lines than other coding standards
</description>

<file>lib</file>
<file>src</file>
<file>templates</file>
<file>tests</file>
<file>www</file>
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./lib</directory>
<directory suffix=".php">./src</directory>
</include>
<report>
<clover outputFile="build/logs/clover.xml"/>
Expand Down
2 changes: 1 addition & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
reportMixedIssues="false"
>
<projectFiles>
<directory name="lib" />
<directory name="src" />
<directory name="tests" />
</projectFiles>

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 236e48d

Please sign in to comment.