Skip to content

Commit 3fc3ec5

Browse files
committedMar 31, 2019
tweak readme
1 parent a819697 commit 3fc3ec5

File tree

8 files changed

+31
-30
lines changed

8 files changed

+31
-30
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Message driven PHP
1+
# Message Driven PHP
22

3-
[![Build status][master:travis:img]][master:travis]
4-
[![Code coverage][master:codecov:img]][master:codecov]
3+
[![Build Status][master:travis:img]][master:travis]
4+
[![Code Coverage][master:codecov:img]][master:codecov]
55

66
MsgPHP is a project that aims to provide (common) message based domain layers for your application. It has a low
77
development time overhead and avoids being overly opinionated.

‎mkdocs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ nav:
2121
- Creating a User: cookbook/user-bundle/creating-a-user.md
2222
- Configuring Symfony Messenger: cookbook/configuring-symfony-messenger.md
2323
- Configuring Doctrine ORM: cookbook/configuring-doctrine-orm.md
24-
- Domain-Driven-Design:
24+
- Domain Driven Design:
2525
- Identifiers: ddd/identifiers.md
2626
- Collections: ddd/collections.md
2727
- Entities: ddd/entities.md
2828
- Repositories: ddd/repositories.md
2929
- Object Factory: ddd/object-factory.md
30-
- Event-Sourcing:
30+
- Event Sourcing:
3131
- Event Handlers: event-sourcing/event-handlers.md
3232
- Events: event-sourcing/events.md
3333
- Message Driven:

‎src/Domain/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ A dependency-free package to help building a business domain layer.
44

55
[![Latest Stable Version][packagist:img]][packagist]
66

7-
## Installation
7+
# Installation
88

99
```bash
1010
composer require msgphp/domain
1111
```
1212

13-
## Documentation
13+
# Documentation
1414

1515
- [Domain-Driven-Design](https://msgphp.github.io/docs/ddd/identifiers/)
16-
- [Event Sourcing](https://msgphp.github.io/docs/event-sourcing/event-handlers/)
17-
- [Message Driven](https://msgphp.github.io/docs/message-driven/message-bus/)
16+
- [Event sourcing](https://msgphp.github.io/docs/event-sourcing/event-handlers/)
17+
- [Message driven](https://msgphp.github.io/docs/message-driven/message-bus/)
1818
- Try the Symfony [demo application](https://github.com/msgphp/symfony-demo-app)
1919
- Get support on [Symfony's Slack `#msgphp` channel](https://symfony.com/slack-invite) or [raise an issue](https://github.com/msgphp/msgphp/issues/new)
2020

21-
## Contributing
21+
# Contributing
2222

2323
This repository is **READ ONLY**. Issues and pull requests should be submitted in the [main development repository](https://github.com/msgphp/msgphp).
2424

‎src/Eav/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ management.
55

66
[![Latest Stable Version][packagist:img]][packagist]
77

8-
## Installation
8+
# Installation
99

1010
```bash
1111
composer require msgphp/eav
1212
```
1313

14-
## Documentation
14+
# Documentation
1515

1616
- Read the [main documentation](https://msgphp.github.io/docs/)
17-
- Checkout the [Symfony Bundle](https://github.com/msgphp/eav-bundle)
17+
- Checkout the [Symfony bundle](https://github.com/msgphp/eav-bundle)
1818
- Try the Symfony [demo application](https://github.com/msgphp/symfony-demo-app)
1919
- Get support on [Symfony's Slack `#msgphp` channel](https://symfony.com/slack-invite) or [raise an issue](https://github.com/msgphp/msgphp/issues/new)
2020

21-
## Contributing
21+
# Contributing
2222

2323
This repository is **READ ONLY**. Issues and pull requests should be submitted in the [main development repository](https://github.com/msgphp/msgphp).
2424

‎src/EavBundle/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ A Symfony bundle for basic [EAV](https://en.wikipedia.org/wiki/Entity%E2%80%93at
44

55
[![Latest Stable Version][packagist:img]][packagist]
66

7-
## Installation
7+
# Installation
88

99
```bash
1010
composer require msgphp/eav-bundle
1111
```
1212

13-
## Configuration
13+
# Configuration
1414

1515
```php
1616
<?php
@@ -30,13 +30,13 @@ return function (ContainerConfigurator $container) {
3030
};
3131
```
3232

33-
## Documentation
33+
# Documentation
3434

3535
- Read the [main documentation](https://msgphp.github.io/docs/)
3636
- Try the Symfony [demo application](https://github.com/msgphp/symfony-demo-app)
3737
- Get support on [Symfony's Slack `#msgphp` channel](https://symfony.com/slack-invite) or [raise an issue](https://github.com/msgphp/msgphp/issues/new)
3838

39-
## Contributing
39+
# Contributing
4040

4141
This repository is **READ ONLY**. Issues and pull requests should be submitted in the
4242
[main development repository](https://github.com/msgphp/msgphp).

‎src/User/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ A domain layer providing basic user management.
44

55
[![Latest Stable Version][packagist:img]][packagist]
66

7-
## Installation
7+
# Installation
88

99
```bash
1010
composer require msgphp/user
1111
```
1212

13-
## Documentation
13+
# Documentation
1414

1515
- Read the [main documentation](https://msgphp.github.io/docs/)
16-
- Checkout the [Symfony Bundle](https://github.com/msgphp/user-bundle)
16+
- Checkout the [Symfony bundle](https://github.com/msgphp/user-bundle)
1717
- Try the Symfony [demo application](https://github.com/msgphp/symfony-demo-app)
1818
- Get support on [Symfony's Slack `#msgphp` channel](https://symfony.com/slack-invite) or [raise an issue](https://github.com/msgphp/msgphp/issues/new)
1919

20-
## Contributing
20+
# Contributing
2121

2222
This repository is **READ ONLY**. Issues and pull requests should be submitted in the [main development repository](https://github.com/msgphp/msgphp).
2323

‎src/UserBundle/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ A new Symfony bundle for basic user management.
44

55
[![Latest Stable Version][packagist:img]][packagist]
66

7-
## Installation
7+
# Installation
88

99
```bash
1010
composer require msgphp/user-bundle
1111
```
1212

13-
## Configuration
13+
# Configuration
1414

1515
```php
1616
<?php
@@ -28,21 +28,21 @@ return function (ContainerConfigurator $container) {
2828
};
2929
```
3030

31-
### Feeling Lazy?
31+
## Feeling Lazy?
3232

3333
```bash
3434
composer require annot form validator twig security messenger orm
3535
composer require maker --dev
3636
bin/console make:user:msgphp
3737
```
3838

39-
## Documentation
39+
# Documentation
4040

4141
- Read the [bundle documentation](https://msgphp.github.io/docs/cookbook/user-bundle/installation/)
4242
- Try the Symfony [demo application](https://github.com/msgphp/symfony-demo-app)
4343
- Get support on [Symfony's Slack `#msgphp` channel](https://symfony.com/slack-invite) or [raise an issue](https://github.com/msgphp/msgphp/issues/new)
4444

45-
## Contributing
45+
# Contributing
4646

4747
This repository is **READ ONLY**. Issues and pull requests should be submitted in the
4848
[main development repository](https://github.com/msgphp/msgphp).

‎src/UserEav/README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@ A bridge between the [`User`](https://github.com/msgphp/user) and [`EAV`](https:
44

55
[![Latest Stable Version][packagist:img]][packagist]
66

7-
## Installation
7+
# Installation
88

99
```bash
1010
composer require msgphp/user-eav
1111
```
1212

13-
## Documentation
13+
# Documentation
1414

1515
- Read the [main documentation](https://msgphp.github.io/docs/)
16+
- Checkout the [Symfony bundle](https://github.com/msgphp/user-bundle)
1617
- Try the Symfony [demo application](https://github.com/msgphp/symfony-demo-app)
1718
- Get support on [Symfony's Slack `#msgphp` channel](https://symfony.com/slack-invite) or [raise an issue](https://github.com/msgphp/msgphp/issues/new)
1819

19-
## Contributing
20+
# Contributing
2021

2122
This repository is **READ ONLY**. Issues and pull requests should be submitted in the [main development repository](https://github.com/msgphp/msgphp).
2223

0 commit comments

Comments
 (0)
Please sign in to comment.