Skip to content

Commit 42b28f5

Browse files
committed
Add initial files
1 parent aea9e1f commit 42b28f5

File tree

5 files changed

+538
-0
lines changed

5 files changed

+538
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Directories
2+
/vendor/

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "sebkay/wp-cronable",
3+
"authors": [
4+
{
5+
"name": "Seb Kay",
6+
"email": "[email protected]"
7+
}
8+
],
9+
"minimum-stability": "stable",
10+
"autoload": {
11+
"psr-4": {
12+
"SebKay\\WPCronable\\": "src/"
13+
}
14+
},
15+
"require": {
16+
"php": "^8.2",
17+
"illuminate/collections": "^10.28"
18+
},
19+
"require-dev": {
20+
"laravel/pint": "^1.13"
21+
},
22+
"scripts": {
23+
"lint": [
24+
"./vendor/bin/pint --test --verbose"
25+
],
26+
"fix": [
27+
"./vendor/bin/pint"
28+
]
29+
}
30+
}

0 commit comments

Comments
 (0)