├── LICENSE └── composer.json /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) Fabien Potencier 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/skeleton", 3 | "type": "project", 4 | "license": "MIT", 5 | "description": "A minimal Symfony project recommended to create bare bones applications", 6 | "minimum-stability": "stable", 7 | "prefer-stable": true, 8 | "require": { 9 | "php": ">=8.2", 10 | "ext-ctype": "*", 11 | "ext-iconv": "*", 12 | "symfony/flex": "^2" 13 | }, 14 | "flex-require": { 15 | "symfony/console": "*", 16 | "symfony/dotenv": "*", 17 | "symfony/framework-bundle": "*", 18 | "symfony/runtime": "*", 19 | "symfony/yaml": "*" 20 | }, 21 | "require-dev": { 22 | }, 23 | "config": { 24 | "allow-plugins": { 25 | "php-http/discovery": true, 26 | "symfony/flex": true, 27 | "symfony/runtime": true 28 | }, 29 | "bump-after-update": true, 30 | "sort-packages": true 31 | }, 32 | "autoload": { 33 | "psr-4": { 34 | "App\\": "src/" 35 | } 36 | }, 37 | "autoload-dev": { 38 | "psr-4": { 39 | "App\\Tests\\": "tests/" 40 | } 41 | }, 42 | "replace": { 43 | "symfony/polyfill-ctype": "*", 44 | "symfony/polyfill-iconv": "*", 45 | "symfony/polyfill-php72": "*", 46 | "symfony/polyfill-php73": "*", 47 | "symfony/polyfill-php74": "*", 48 | "symfony/polyfill-php80": "*", 49 | "symfony/polyfill-php81": "*", 50 | "symfony/polyfill-php82": "*" 51 | }, 52 | "scripts": { 53 | "auto-scripts": [ 54 | ], 55 | "post-install-cmd": [ 56 | "@auto-scripts" 57 | ], 58 | "post-update-cmd": [ 59 | "@auto-scripts" 60 | ] 61 | }, 62 | "conflict": { 63 | "symfony/symfony": "*" 64 | }, 65 | "extra": { 66 | "symfony": { 67 | "allow-contrib": false, 68 | "require": "7.3.*" 69 | } 70 | } 71 | } 72 | --------------------------------------------------------------------------------