-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
94 lines (94 loc) · 2.74 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "php-school/website",
"description": "PHP School Website",
"homepage": "https://www.phpschool.io",
"license": "MIT",
"authors": [
{
"name": "Aydin Hassan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"slim/slim": "^4.7",
"monolog/monolog": "^2.2",
"php-di/slim-bridge": "^3.1",
"mnapoli/silly-php-di": "^1.0",
"psr/cache": "^1.0",
"symfony/cache": "^5.2",
"predis/predis": "^1.1",
"doctrine/orm": "^2.8",
"ramsey/uuid-doctrine": "^1.2",
"knplabs/github-api": "^3.1",
"jenssegers/agent": "^2.3",
"sendgrid/sendgrid": "^7.9",
"vlucas/phpdotenv": "^5.3",
"mnapoli/front-yaml": "^1.5",
"laminas/laminas-inputfilter": "^2.28",
"laminas/laminas-uri": "^2.11",
"laminas/laminas-authentication": "^2.16",
"laminas/laminas-session": "^2.17",
"symfony/finder": "^5.2",
"laminas/laminas-filter": "^2.11",
"laminas/laminas-servicemanager": "^3.6",
"guzzlehttp/guzzle": "^7.0.1",
"http-interop/http-factory-guzzle": "^1.0",
"akrabat/ip-address-middleware": "^2.0",
"ext-json": "*",
"illuminate/collections": "^8.36",
"doctrine/annotations": "^1.13",
"psr/log": "^1.0 | ^2.0 | ^3.0",
"php-school/php-workshop": "dev-master",
"php-school/learn-you-php": "dev-master",
"php-school/php8-appreciate": "dev-master",
"league/oauth2-github": "^3.0",
"symfony/string": "^6.1",
"symfony/translation-contracts": "^3.1",
"spatie/commonmark-highlighter": "^2.1",
"ahinkle/packagist-latest-version": "^2.1",
"symfony/rate-limiter": "^6.2",
"tuupola/slim-jwt-auth": "^3.8"
},
"autoload": {
"psr-4": {
"PhpSchool\\Website\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpSchool\\WebsiteTest\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"weirdan/doctrine-psalm-plugin": "^1.0",
"doctrine/data-fixtures": "^1.5",
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "^3.51"
},
"scripts" : {
"test": [
"@phpunit",
"@cs"
],
"phpunit": "phpunit",
"cs" : "php-cs-fixer fix --dry-run --allow-risky=yes",
"cs:ci" : "php-cs-fixer fix --dry-run --allow-risky=yes --format=checkstyle | cs2pr",
"cs-fix": "php-cs-fixer --allow-risky=yes fix",
"static": "phpstan --ansi analyse --level max src",
"app:cc": "php bin/app clear-cache",
"app:gen:blog": "php bin/app generate-blog",
"app:db:validate": "php bin/app orm:validate-schema",
"app:db:update": [
"php bin/app orm:clear-cache:metadata",
"php bin/app orm:schema-tool:update -f --complete"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}