We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d46c19 commit 29e64a7Copy full SHA for 29e64a7
README.md
@@ -4,24 +4,24 @@ Installation & usage
4
--------------------
5
1. Create your library
6
```bash
7
-$ composer create-project elodgy/library-template my-library
+$ composer create-project benjaminmal/library-template my-library
8
```
9
10
2. Modify composer.json to fit with your library
11
12
```json
13
{
14
- "name": "elodgy/my-library",
+ "name": "my-org/my-library",
15
"description": "My library",
16
"type": "library",
17
"autoload": {
18
"psr-4": {
19
- "Elodgy\\MyLibrary\\": "lib/"
+ "MyNamespace\\MyLibrary\\": "lib/"
20
}
21
},
22
"autoload-dev": {
23
24
- "Elodgy\\MyLibrary\\Tests\\": "tests/"
+ "MyNamespace\\MyLibrary\\Tests\\": "tests/"
25
26
27
0 commit comments