2017-01-02 02:19:17 +01:00
|
|
|
{
|
|
|
|
"name": "engelsystem/engelsystem",
|
|
|
|
"description": "Shift planning system for chaos events",
|
|
|
|
"type": "project",
|
2020-04-25 12:59:15 +02:00
|
|
|
"license": "GPL-2.0-or-later",
|
2017-01-02 02:19:17 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "msquare",
|
|
|
|
"email": "msquare@notrademark.de"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "MyIgel",
|
|
|
|
"email": "igor.scheller@igorshp.de"
|
|
|
|
}
|
|
|
|
],
|
2019-11-12 22:24:18 +01:00
|
|
|
"scripts": {
|
|
|
|
"phpcs": "phpcs -p",
|
|
|
|
"phpcbf": "phpcbf -p"
|
|
|
|
},
|
2017-01-02 02:19:17 +01:00
|
|
|
"require": {
|
2020-04-19 23:14:06 +02:00
|
|
|
"php": ">=7.3.0",
|
2018-08-11 23:46:28 +02:00
|
|
|
"ext-json": "*",
|
2018-08-29 21:55:32 +02:00
|
|
|
"ext-libxml": "*",
|
2019-03-16 19:56:58 +01:00
|
|
|
"ext-mbstring": "*",
|
2018-08-11 23:46:28 +02:00
|
|
|
"ext-PDO": "*",
|
2018-08-29 21:55:32 +02:00
|
|
|
"ext-SimpleXML": "*",
|
|
|
|
"ext-xml": "*",
|
2021-05-01 11:57:31 +02:00
|
|
|
"doctrine/dbal": "^3.1",
|
2019-05-31 17:09:50 +02:00
|
|
|
"erusev/parsedown": "^1.7",
|
2021-05-01 11:57:31 +02:00
|
|
|
"gettext/gettext": "^5.5",
|
2020-04-20 02:02:26 +02:00
|
|
|
"gettext/translator": "^1.0",
|
2021-05-01 11:57:31 +02:00
|
|
|
"guzzlehttp/guzzle": "^7.3",
|
|
|
|
"illuminate/container": "^8.41",
|
|
|
|
"illuminate/database": "^8.41",
|
|
|
|
"illuminate/support": "^8.41",
|
2020-11-15 18:47:30 +01:00
|
|
|
"league/oauth2-client": "^2.6",
|
2018-08-25 21:16:20 +02:00
|
|
|
"nikic/fast-route": "^1.3",
|
2021-05-01 11:57:31 +02:00
|
|
|
"nyholm/psr7": "^1.4",
|
|
|
|
"psr/container": "^1.1",
|
2018-08-07 03:18:22 +02:00
|
|
|
"psr/http-server-middleware": "^1.0",
|
2019-05-31 17:09:50 +02:00
|
|
|
"psr/log": "^1.1",
|
2019-07-10 13:34:15 +02:00
|
|
|
"respect/validation": "^1.1",
|
2019-05-31 17:09:50 +02:00
|
|
|
"swiftmailer/swiftmailer": "^6.2",
|
2021-05-01 11:57:31 +02:00
|
|
|
"symfony/http-foundation": "^5.2",
|
|
|
|
"symfony/mime": "^5.2",
|
|
|
|
"symfony/psr-http-message-bridge": "^2.1",
|
|
|
|
"twig/twig": "^3.3",
|
|
|
|
"vlucas/phpdotenv": "^5.3"
|
2017-01-20 21:12:19 +01:00
|
|
|
},
|
2017-07-17 18:54:06 +02:00
|
|
|
"require-dev": {
|
2021-05-01 11:57:31 +02:00
|
|
|
"dms/phpunit-arraysubset-asserts": "^0.3.0",
|
2021-06-29 00:27:57 +02:00
|
|
|
"fakerphp/faker": "^1.14.1",
|
2021-05-01 11:57:31 +02:00
|
|
|
"filp/whoops": "^2.12",
|
|
|
|
"phpunit/phpunit": "^9.5",
|
|
|
|
"squizlabs/php_codesniffer": "^3.6",
|
|
|
|
"symfony/var-dumper": "^5.2"
|
2017-07-17 18:54:06 +02:00
|
|
|
},
|
2017-01-20 21:12:19 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2020-04-19 19:59:23 +02:00
|
|
|
"Engelsystem\\": "src/"
|
2017-01-21 23:07:20 +01:00
|
|
|
},
|
2020-04-19 19:59:23 +02:00
|
|
|
"classmap": ["db/migrations"],
|
2017-01-21 23:07:20 +01:00
|
|
|
"files": [
|
|
|
|
"src/helpers.php"
|
|
|
|
]
|
2020-04-19 19:59:23 +02:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2021-06-29 00:27:57 +02:00
|
|
|
"Database\\Factories\\Engelsystem\\Models\\": "db/factories/",
|
2020-04-19 19:59:23 +02:00
|
|
|
"Engelsystem\\Test\\": "tests/"
|
|
|
|
}
|
2021-11-30 23:29:51 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"allow-plugins": {
|
|
|
|
"composer/package-versions-deprecated": true
|
|
|
|
}
|
2017-01-02 02:19:17 +01:00
|
|
|
}
|
|
|
|
}
|