diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-01-17 02:11:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-01-17 02:11:31 +0900 |
| commit | deacd0dfc195bca41af631114804d29937337cd8 (patch) | |
| tree | f1f83580e5bc892c0794ac41632bc0cce3498f65 /services/app/composer.json | |
| parent | 38ddeb28ec846ee966d0fe6873585d697a9ef373 (diff) | |
| download | phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.tar.gz phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.tar.zst phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.zip | |
.
Diffstat (limited to 'services/app/composer.json')
| -rw-r--r-- | services/app/composer.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/services/app/composer.json b/services/app/composer.json new file mode 100644 index 0000000..e87d1f1 --- /dev/null +++ b/services/app/composer.json @@ -0,0 +1,34 @@ +{ + "name": "nsfisis/albatross", + "license": "MIT License", + "autoload": { + "psr-4": { + "Nsfisis\\Albatross\\": "src/" + } + }, + "require": { + "middlewares/php-session": "^3.1", + "php-di/slim-bridge": "^3.4", + "slim/csrf": "^1.3", + "slim/psr7": "^1.6", + "slim/slim": "^4.12", + "slim/twig-view": "^3.3" + }, + "require-dev": { + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-deprecation-rules": "^1.1", + "phpstan/phpstan-strict-rules": "^1.5", + "phpunit/phpunit": "^10.3", + "symplify/easy-coding-standard": "^12.0" + }, + "config": { + "preferred-install": "dist", + "sort-packages": true + }, + "scripts": { + "ecs": "ecs check", + "ecsfix": "ecs check --fix", + "phpstan": "phpstan analyse", + "phpunit": "phpunit tests" + } +} |
