Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nextjs/laravel): Replace Next.js SDK with Laravel SDK #13647

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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