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 11f4987 commit 7281ce5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .php_cs.dist
@@ -1,7 +1,7 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in([
__DIR__ . '/lib',
__DIR__ . '/src',
__DIR__ . '/tests',
])
;
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -13,7 +13,7 @@
],
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\entitycategories\\": "lib/"
"SimpleSAML\\Module\\entitycategories\\": "src/"
}
},
"autoload-dev": {
Expand All @@ -23,11 +23,11 @@
},
"require": {
"php": ">=7.4 || ^8.0",
"simplesamlphp/composer-module-installer": "~1.1",
"simplesamlphp/simplesamlphp": "^2.0.0-beta.2"
"simplesamlphp/composer-module-installer": "~1.1.8",
"simplesamlphp/simplesamlphp": "^2.0.0-beta.11"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~1.1.4"
"simplesamlphp/simplesamlphp-test-framework": "~1.2.1"
},
"config": {
"allow-plugins": {
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml
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>tests</file>

<!-- Use this to exclude paths. You can have multiple patterns -->
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
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
Expand Up @@ -6,7 +6,7 @@
reportMixedIssues="false"
>
<projectFiles>
<directory name="lib" />
<directory name="src" />
</projectFiles>

<issueHandlers>
Expand Down
File renamed without changes.

0 comments on commit 7281ce5

Please sign in to comment.