Skip to content

Commit

Permalink
feat(nextjs/laravel): Replace Next.js SDK with Laravel SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Sep 10, 2024
1 parent 8eaa562 commit 18accf6
Show file tree
Hide file tree
Showing 201 changed files with 10,592 additions and 8,309 deletions.
10 changes: 10 additions & 0 deletions packages/laravel/.craft.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
minVersion: 0.23.1
changelogPolicy: simple
preReleaseCommand: bash scripts/craft-pre-release.sh
artifactProvider:
name: none
targets:
- name: github
- name: registry
sdks:
composer:sentry/sentry-laravel:
9 changes: 9 additions & 0 deletions packages/laravel/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.github export-ignore
/scripts export-ignore
/test export-ignore
/.craft.yml export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.php_cs export-ignore
/Makefile export-ignore
/phpunit.xml export-ignore
14 changes: 14 additions & 0 deletions packages/laravel/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# IDE
.idea

# Composer
/vendor
composer.lock

# phpunit/phpunit
coverage.xml
.phpunit.result.cache

# friendsofphp/php-cs-fixer
/.php_cs.cache
/.php-cs-fixer.cache
16 changes: 16 additions & 0 deletions packages/laravel/.php-cs-fixer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
;

$config = new PhpCsFixer\Config;

$config
->setRules([
'@PSR2' => true,
])
->setFinder($finder)
;

return $config;
Loading

0 comments on commit 18accf6

Please sign in to comment.