Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change composer name #2

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>