├── composer.json ├── LICENSE ├── CONTRIBUTING.md ├── src ├── LaravelController.php └── EloquentBuilderTrait.php └── README.md /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "optimus/bruno", 3 | "autoload": { 4 | "psr-4": { 5 | "Optimus\\Bruno\\": "src/" 6 | } 7 | }, 8 | "require": { 9 | "laravel/framework": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0", 10 | "optimus/architect": "2.0.*" 11 | }, 12 | "require-dev": { 13 | "mockery/mockery": "1.3.*", 14 | "orchestra/testbench": "4.*", 15 | "phpunit/phpunit": "~8.0", 16 | "php-coveralls/php-coveralls": "2.2.*" 17 | }, 18 | "minimum-stability": "stable", 19 | "prefer-stable": true, 20 | "license": "MIT" 21 | } 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Esben Petersen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ### Commit Message Format 2 | 3 | [Angular.js commit message style](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#) 4 | 5 | Each commit message consists of a **header**, a **body** and a **footer**. The header has a special 6 | format that includes a **type**, a **scope** and a **subject**: 7 | 8 | ``` 9 | (): 10 | 11 | 12 | 13 |