Skip to content

Commit c9b3226

Browse files
committed
Docs: Rebrand to Alma Career in documentation and meta information
1 parent 0014a8c commit c9b3226

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
<!-- We follow Semantic Versioning (http://semver.org/) and Keep a Changelog principles (http://keepachangelog.com/) -->
3+
<!-- We follow Semantic Versioning (https://semver.org/) and Keep a Changelog principles (https://keepachangelog.com/) -->
44

55
<!-- There is always Unreleased section on the top. Subsections (Added, Changed, Fixed, Removed) should be added as needed. -->
66

LICENCE.md LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### The MIT License (MIT) ###
22

3-
Copyright (c) 2018 LMC s.r.o.
3+
Copyright (c) Alma Career Czechia s.r.o.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# LMC Coding Standard for PHP
1+
# Alma Career Czechia Coding Standard for PHP
22

33
[![Latest Stable Version](https://img.shields.io/packagist/v/lmc/coding-standard.svg?style=flat-square)](https://packagist.org/packages/lmc/coding-standard)
44

5-
PHP coding standard used in [LMC](https://www.lmc.eu/en/) projects.
5+
PHP coding standard used in [Alma Career Czechia](https://www.almacareer.com/) (formerly LMC) products.
66

77
Standard is based on [PSR-12](https://www.php-fig.org/psr/psr-12/) and adds
88
various checks to make sure the code is readable, does follow the same conventions and does not contain common mistakes.
@@ -17,7 +17,7 @@ composer require --dev lmc/coding-standard
1717

1818
## Usage
1919

20-
1. Create `ecs.php` file in the root directory of your project and import the LMC code-style rules:
20+
1. Create `ecs.php` file in the root directory of your project and import the code-style rules:
2121

2222
```php
2323
<?php declare(strict_types=1);
@@ -74,7 +74,7 @@ Now you will be able to run the fix using `composer analyze` and execute automat
7474
On top of default code-style rules you are free to add any rules from [PHP-CS-Fixer] or [PHP_CodeSniffer].
7575
If needed, you can also override some default settings.
7676

77-
Be aware you must add these settings **after** import of the base LMC code-style:
77+
Be aware you must add these settings **after** import of the base Alma Career Czechia (LMC) code-style:
7878

7979
```php
8080
<?php declare(strict_types=1);
@@ -104,7 +104,7 @@ See [EasyCodingStandard docs](https://github.com/symplify/easy-coding-standard#c
104104

105105
You can configure your `ecs.php` to entirely skip some files, disable specific checks of suppress specific errors.
106106

107-
Unlike adding/modifying checks, skips must be added **before** import of the base LMC code-style.
107+
Unlike adding/modifying checks, skips must be added **before** import of the base Alma Career Czechia (LMC) code-style.
108108

109109
```php
110110
<?php declare(strict_types=1);
@@ -143,7 +143,7 @@ For integration with PHPStorm etc. follow instructions in EasyCodingStandard [RE
143143
For latest changes see [CHANGELOG.md](CHANGELOG.md) file. We follow [Semantic Versioning](https://semver.org/).
144144

145145
## License
146-
This library is open source software licensed under the [MIT license](LICENCE.md).
146+
This library is open source software licensed under the [MIT license](LICENSE.md).
147147

148148
[PHP-CS-Fixer]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
149149
[PHP_CodeSniffer]: https://github.com/squizlabs/PHP_CodeSniffer

UPGRADE-4.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $ vendor/bin/ecs check --ansi # new
8484
```
8585

8686
### 5. Sanity check
87-
Besides running your code style checks, you can ensure all predefined LMC checks are loaded as well, by running:
87+
Besides running your code style checks, you can ensure all predefined checks are loaded as well, by running:
8888

8989
```sh
9090
vendor/bin/ecs list-checkers

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "lmc/coding-standard",
3-
"description": "Coding standard used in LMC projects",
3+
"description": "Coding standard used in Alma Career Czechia (LMC) projects",
44
"license": "MIT",
55
"type": "library",
66
"authors": [
77
{
8-
"name": "LMC s.r.o.",
9-
"homepage": "https://github.com/lmc-eu"
8+
"name": "Alma Career",
9+
"homepage": "https://github.com/almacareer/"
1010
}
1111
],
1212
"require": {

0 commit comments

Comments
 (0)