Skip to content

Commit 777b9ca

Browse files
committed
Merge pull request #3 from webdevilopers/example
Example
2 parents 81654f7 + fb96fe5 commit 777b9ca

File tree

14 files changed

+1577
-0
lines changed

14 files changed

+1577
-0
lines changed

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "vendor_name/package_name",
3+
"description": "description_text",
4+
"minimum-stability": "stable",
5+
"license": "proprietary",
6+
"authors": [
7+
{
8+
"name": "author's name",
9+
"email": "email@example.com"
10+
}
11+
],
12+
"require": {
13+
"phpunit/phpunit": "^5.2"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"Example\\": ["src", "tests"]
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)