Skip to content

Commit

Permalink
Merge pull request #2 from ProtonMail/rename-composer-project-1
Browse files Browse the repository at this point in the history
Update composer name
  • Loading branch information
BafS authored Oct 27, 2023
2 parents baf6b8c + 3502145 commit 0710b96
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ composer.phar
# composer.lock
/build/logs

.phpunit.result.cache
*.cache
.idea/
8 changes: 4 additions & 4 deletions .php_cs → .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
with this source code in the file LICENSE.
EOT;

return PhpCsFixer\Config::create()
->setRules(array(
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'simplified_null_return' => false,
'phpdoc_no_empty_return' => false,
'yoda_style' => null,
'yoda_style' => false,
'self_accessor' => false,
'no_mixed_echo_print' => ['use' => 'print'],
'header_comment' => ['header' => $header],
))
])
->setUsingCache(false)
->setFinder($finder)
;
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

SCIM schema PHP library with support for both v1 and v2.

> This library is a fork of https://github.com/tmilos/scim-s to make it compatible with modern PHP
> **Note:** This library is still work in progress, and you are welcome to help and contribute
> It was made by the specs from [SimpleCloud](http://www.simplecloud.info/) and by the example documents generated by
Expand All @@ -21,7 +23,7 @@ SCIM schema PHP library with support for both v1 and v2.
Install Scim Schema using composer:

```bash
composer require tmilos/scim-schema
composer require protonlabs/scim-schema
```

# Usage
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "tmilos/scim-schema",
"name": "protonlabs/scim-schema",
"license": "MIT",
"description": "SCIM schema library",
"type": "library",
"keywords": ["scim", "scim schema", "RFC7643"],
"homepage": "https://github.com/tmilos/scim-schema",
"homepage": "https://github.com/protonlabs/scim-schema",
"authors": [
{
"name": "Milos Tomic",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@
<directory>tests</directory>
</testsuite>
</testsuites>

<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 0710b96

Please sign in to comment.