Skip to content

Commit 5ae63c1

Browse files
committed
分離自原專案
0 parents  commit 5ae63c1

File tree

11 files changed

+8596
-0
lines changed

11 files changed

+8596
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/vendor
2+
.env
3+
.php_cs.cache
4+
.phpunit.result.cache

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# A Laravel package example

composer.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "a2workspace/laravel-stubs",
3+
"description": "A Laravel package example.",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Shishamou",
8+
"email": "shishatw225@gmail.com"
9+
}
10+
],
11+
"require": {
12+
"php": "^7.4|^8.0"
13+
},
14+
"require-dev": {
15+
"orchestra/testbench": "6.x"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"A2Workspace\\Stubs\\": "src/"
20+
}
21+
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"Tests\\": "tests/"
25+
}
26+
},
27+
"config": {
28+
"platform": {
29+
"ext-posix": "0"
30+
}
31+
},
32+
"extra": {
33+
"laravel": {
34+
"providers": [
35+
"A2Workspace\\Stubs\\ServiceProvider"
36+
]
37+
}
38+
}
39+
}

0 commit comments

Comments
 (0)