Skip to content

Commit c2ce053

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 761e229 + 17d155d commit c2ce053

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
# Composer - Include Files Plugin
22

3-
When using the Composer Autoloader if you need project files included prior to files autoloaded by any of your dependancies your out of luck. No longer!
3+
When using the Composer Autoloader if you need project files included prior to files autoloaded by any of your dependencies your out of luck. No longer!
44

5-
Just add the files you need included using `"include_files"` and they will be include prior to any files included by your dependancies.
5+
## Installation
6+
7+
```bash
8+
composer require funkjedi/composer-include-files
9+
```
10+
11+
## Usage
12+
13+
Just add the files you need included using `"include_files"` and they will be include prior to any files included by your dependencies.
614

715
```json
816
// composer.json (project)
917
{
10-
"require": {
11-
"funkjedi/composer-include-files": "dev-master",
12-
},
1318
"extra": {
1419
"include_files": [
1520
"/path/to/file/you/want/to/include",
@@ -32,7 +37,7 @@ But now we can use *Composer - Include Files Plugin* to have Composer include th
3237
{
3338
"require": {
3439
"laravel/framework": "^5.2",
35-
"funkjedi/composer-include-files": "dev-master",
40+
"funkjedi/composer-include-files": "^1.0",
3641
},
3742
"extra": {
3843
"include_files": [

0 commit comments

Comments
 (0)