Skip to content

Commit c7bd1b8

Browse files
authored
Merge branch 'main' into feat/forwards
2 parents 4813170 + 9869755 commit c7bd1b8

File tree

136 files changed

+1126
-900
lines changed

Some content is hidden

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

136 files changed

+1126
-900
lines changed

.github/workflows/pint.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ jobs:
44
phplint:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
8-
- name: "laravel-pint"
9-
uses: aglipanci/[email protected]
10-
with:
11-
preset: laravel
12-
pintVersion: 1.8.0
13-
verboseMode: true
14-
testMode: true
15-
# configPath: "vendor/my-company/coding-style/pint.json"
7+
- uses: actions/checkout@v3
8+
- name: "laravel-pint"
9+
uses: aglipanci/[email protected]
10+
with:
11+
preset: laravel
12+
pintVersion: 1.25.1
13+
verboseMode: true
14+
testMode: true
15+
# configPath: "vendor/my-company/coding-style/pint.json"

composer.json

Lines changed: 85 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,87 @@
11
{
2-
"name": "notfoundnl/siteboss-framework",
3-
"description": "SiteBoss® framework is a headless CMS for Laravel. It will produce a JSON for a UI to consume.",
4-
"keywords": [
5-
"NotFound",
6-
"laravel",
7-
"siteboss-framework"
8-
],
9-
"homepage": "https://github.com/notfoundnl/siteboss-framework",
10-
"license": "AGPL-3.0-or-later",
11-
"authors": [
12-
{
13-
"name": "NotFound Digital Creativity",
14-
"email": "[email protected]",
15-
"role": "Developer"
16-
}
17-
],
18-
"require": {
19-
"spatie/laravel-package-tools": "^1.14.0",
20-
"spatie/laravel-honeypot": "^4.3.2",
21-
"illuminate/contracts": "^10.0|^11.0",
22-
"notfoundnl/siteboss-layout": "^1.6.1",
23-
"notfoundnl/siteboss-static": "^1.13",
24-
"mcamara/laravel-localization": "^2.0",
25-
"xenolope/quahog": "^3.0",
26-
"firebase/php-jwt": "^6.3",
27-
"intervention/image": "^3.0",
28-
"php": "^8.1",
29-
"doctrine/dbal": "^3.6"
2+
"name": "notfoundnl/siteboss-framework",
3+
"description": "SiteBoss® framework is a headless CMS for Laravel. It will produce a JSON for a UI to consume.",
4+
"keywords": [
5+
"NotFound",
6+
"laravel",
7+
"siteboss-framework"
8+
],
9+
"homepage": "https://github.com/notfoundnl/siteboss-framework",
10+
"license": "AGPL-3.0-or-later",
11+
"authors": [
12+
{
13+
"name": "NotFound Digital Creativity",
14+
"email": "[email protected]",
15+
"role": "Developer"
16+
}
17+
],
18+
"require": {
19+
"spatie/laravel-package-tools": "^1.14.0",
20+
"spatie/laravel-honeypot": "^4.3.2",
21+
"illuminate/contracts": "^10.0|^11.0|^12.0",
22+
"notfoundnl/siteboss-layout": "^1.6.1|dev-main",
23+
"notfoundnl/siteboss-static": "^1.15.0",
24+
"mcamara/laravel-localization": "^2.0",
25+
"enshrined/svg-sanitize": "^0.22.0",
26+
"xenolope/quahog": "^3.0",
27+
"firebase/php-jwt": "^6.3",
28+
"intervention/image": "^3.0",
29+
"doctrine/dbal": "^4.0"
30+
},
31+
"require-dev": {
32+
"laravel/pint": "^1.25.1",
33+
"nunomaduro/collision": "^6.0",
34+
"nunomaduro/larastan": "^2.0.1",
35+
"orchestra/testbench": "^8.9",
36+
"pestphp/pest": "^1.21",
37+
"pestphp/pest-plugin-laravel": "^1.1",
38+
"phpstan/extension-installer": "^1.1",
39+
"phpstan/phpstan-deprecation-rules": "^1.0",
40+
"phpstan/phpstan-phpunit": "^1.0",
41+
"phpunit/phpunit": "^9.5",
42+
"nunomaduro/phpinsights": "^2.9.0"
43+
},
44+
"autoload": {
45+
"psr-4": {
46+
"NotFound\\Framework\\": "src",
47+
"NotFound\\Framework\\Database\\Seeders\\": "database/seeders"
3048
},
31-
"require-dev": {
32-
"laravel/pint": "^1.0",
33-
"nunomaduro/collision": "^6.0",
34-
"nunomaduro/larastan": "^2.0.1",
35-
"orchestra/testbench": "^8.9",
36-
"pestphp/pest": "^1.21",
37-
"pestphp/pest-plugin-laravel": "^1.1",
38-
"phpstan/extension-installer": "^1.1",
39-
"phpstan/phpstan-deprecation-rules": "^1.0",
40-
"phpstan/phpstan-phpunit": "^1.0",
41-
"phpunit/phpunit": "^9.5",
42-
"nunomaduro/phpinsights": "^2.9.0"
43-
},
44-
"autoload": {
45-
"psr-4": {
46-
"NotFound\\Framework\\": "src",
47-
"NotFound\\Framework\\Database\\Seeders\\": "database/seeders"
48-
},
49-
"files": [
50-
"src/Http/Helpers.php"
51-
]
52-
},
53-
"autoload-dev": {
54-
"psr-4": {
55-
"NotFound\\Framework\\Tests\\": "tests"
56-
}
57-
},
58-
"scripts": {
59-
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
60-
"analyse": "vendor/bin/phpstan analyse",
61-
"test": "vendor/bin/pest",
62-
"test-coverage": "vendor/bin/pest --coverage",
63-
"format": "vendor/bin/pint"
64-
},
65-
"config": {
66-
"sort-packages": true,
67-
"allow-plugins": {
68-
"pestphp/pest-plugin": true,
69-
"phpstan/extension-installer": true,
70-
"php-http/discovery": true,
71-
"bamarni/composer-bin-plugin": true,
72-
"dealerdirect/phpcodesniffer-composer-installer": true
73-
}
74-
},
75-
"extra": {
76-
"laravel": {
77-
"providers": [
78-
"NotFound\\Framework\\FrameworkServiceProvider"
79-
],
80-
"aliases": {
81-
"Sb": "NotFound\\Framework\\Helpers\\SitebossHelper"
82-
}
83-
}
84-
},
85-
"minimum-stability": "dev",
86-
"prefer-stable": true
87-
}
49+
"files": [
50+
"src/Http/Helpers.php"
51+
]
52+
},
53+
"autoload-dev": {
54+
"psr-4": {
55+
"NotFound\\Framework\\Tests\\": "tests"
56+
}
57+
},
58+
"scripts": {
59+
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
60+
"analyse": "vendor/bin/phpstan analyse",
61+
"test": "vendor/bin/pest",
62+
"test-coverage": "vendor/bin/pest --coverage",
63+
"format": "vendor/bin/pint"
64+
},
65+
"config": {
66+
"sort-packages": true,
67+
"allow-plugins": {
68+
"pestphp/pest-plugin": true,
69+
"phpstan/extension-installer": true,
70+
"php-http/discovery": true,
71+
"bamarni/composer-bin-plugin": true,
72+
"dealerdirect/phpcodesniffer-composer-installer": true
73+
}
74+
},
75+
"extra": {
76+
"laravel": {
77+
"providers": [
78+
"NotFound\\Framework\\FrameworkServiceProvider"
79+
],
80+
"aliases": {
81+
"Sb": "NotFound\\Framework\\Helpers\\SitebossHelper"
82+
}
83+
}
84+
},
85+
"minimum-stability": "dev",
86+
"prefer-stable": true
87+
}

0 commit comments

Comments
 (0)