Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dangdungcntt/laravel-spring
https://github.com/dangdungcntt/laravel-spring
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dangdungcntt/laravel-spring
- Owner: dangdungcntt
- License: mit
- Created: 2021-10-13T09:48:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-19T03:33:54.000Z (about 2 years ago)
- Last Synced: 2024-04-14T07:50:00.339Z (9 months ago)
- Language: PHP
- Size: 47.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Bring Spring Annotation into Laravel application
[![Latest Version on Packagist](https://img.shields.io/packagist/v/nddcoder/laravel-spring.svg?style=flat-square)](https://packagist.org/packages/nddcoder/laravel-spring)
[![GitHub Tests Action Status](https://github.com/dangdungcntt/laravel-spring/workflows/run-tests/badge.svg?branch=main)](https://github.com/dangdungcntt/laravel-spring/actions?query=workflow%3Arun-tests+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/nddcoder/laravel-spring.svg?style=flat-square)](https://packagist.org/packages/nddcoder/laravel-spring)This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
## Installation
You can install the package via composer:
```bash
composer require nddcoder/laravel-spring
```You can publish and run the migrations with:
```bash
php artisan vendor:publish --provider="Nddcoder\LaravelSpring\LaravelSpringServiceProvider" --tag="laravel-spring-migrations"
php artisan migrate
```You can publish the config file with:
```bash
php artisan vendor:publish --provider="Nddcoder\LaravelSpring\LaravelSpringServiceProvider" --tag="laravel-spring-config"
```This is the contents of the published config file:
```php
return [
];
```## Usage
```php
$laravel-spring = new Nddcoder\LaravelSpring();
echo $laravel-spring->echoPhrase('Hello, Nddcoder!');
```## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Dung Nguyen Dang](https://github.com/dangdungcntt)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.