Skip to content

Commit 9c0c6b5

Browse files
committed
Simple Laravel package for stubs installation
1 parent e5c482a commit 9c0c6b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+6256
-29
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+
/.idea
4+
/.vscode

composer.json

Lines changed: 33 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,35 @@
11
{
2-
"name": "coddin-web/laravel-stubs",
3-
"description": "Laravel 7/8 stubs more consistent with PSR-12 and PHP 7/8",
4-
"keywords": [
5-
"coddin",
6-
"laravel",
7-
"stubs",
8-
"laravel-stubs"
9-
],
10-
"homepage": "https://github.com/coddin-web/laravel-stubs",
11-
"license": "MIT",
12-
"authors": [
13-
{
14-
"name": "Marius Posthumus",
15-
"email": "[email protected]",
16-
"homepage": "https://coddin.nl",
17-
"role": "Developer"
18-
}
19-
],
20-
"require": {
21-
"php": "^7.0|^8.0",
22-
"laravel/framework": "^7.0|^8.0"
23-
},
24-
"scripts": {
25-
"post-package-install": [
26-
"ln -s vendor/coddin-web/laravel-stubs/src stubs"
27-
]
28-
},
29-
"minimum-stability": "dev",
30-
"prefer-stable": true
2+
"name": "coddin-web/laravel-stubs",
3+
"description": "Laravel 7/8 stubs more consistent with PSR-12 and PHP 7/8",
4+
"keywords": [ "coddin", "laravel", "stubs", "laravel-stubs" ],
5+
"homepage": "https://github.com/coddin-web/laravel-stubs",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Marius Posthumus",
10+
"email": "[email protected]",
11+
"homepage": "https://coddin.nl",
12+
"role": "Developer"
13+
}
14+
],
15+
"require": {
16+
"php": "^7.3|^8.0"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Coddin\\Stubs\\": "app/"
21+
}
22+
},
23+
"extra": {
24+
"laravel": {
25+
"providers": [
26+
"Coddin\\Stubs\\CoddinStubsServiceProvider"
27+
]
28+
}
29+
},
30+
"config": {
31+
"sort-packages": true
32+
},
33+
"minimum-stability": "dev",
34+
"prefer-stable": true
3135
}

0 commit comments

Comments
 (0)