Skip to content

Commit 0f41cec

Browse files
committed
wip
1 parent a3ca218 commit 0f41cec

File tree

5 files changed

+2493
-851
lines changed

5 files changed

+2493
-851
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
schedule:
3+
- cron: '0 7 * * *'
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
12+
- name: Setup PHP
13+
uses: shivammathur/setup-php@v2
14+
with:
15+
php-version: '7.4'
16+
17+
- name: Install dependencies
18+
run: composer install
19+
20+
- name: Build API docs
21+
run: php vendor/bin/phpdoc -d src -t docs/api
22+
23+
- name: Commit and push changes
24+
run: |
25+
git config --local user.email "

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ npm-debug.log
1919
yarn-error.log
2020
/.fleet
2121
/.idea
22+
/.scribe
2223
/.vscode
24+
/public/docs

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,21 @@
1010
],
1111
"repositories": {
1212
"cachet-core": {
13-
"type": "vcs",
14-
"url": "[email protected]:cachethq/core.git"
13+
"type": "path",
14+
"url": "../cachet-core"
1515
}
1616
},
1717
"require": {
1818
"php": "^8.2",
19-
"cachethq/core": "dev-main",
19+
"cachethq/core": "*",
2020
"guzzlehttp/guzzle": "^7.2",
2121
"laravel/framework": "^11.2",
2222
"laravel/sanctum": "^4.0",
2323
"laravel/tinker": "^2.9"
2424
},
2525
"require-dev": {
2626
"fakerphp/faker": "^1.23",
27+
"knuckleswtf/scribe": "^4.38",
2728
"laravel/pail": "^1.1",
2829
"laravel/pint": "^1.13",
2930
"laravel/sail": "^1.26",

0 commit comments

Comments
 (0)