-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·43 lines (43 loc) · 1.17 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
{
"autoload": {
"files": [
"src/Normalizer/artist_normalizer.php",
"src/Functional/functions.php",
"src/Functional/router.php",
"src/Normalizer/tag_list_with_children_normalizer.php",
"src/Normalizer/video_tag_normalizer.php",
"src/Normalizer/tag_show_normalizer.php",
"src/Controller/artist_controller.php",
"src/Controller/statistic_controller.php",
"src/Controller/tag_subscribe_controller.php",
"src/Controller/tag_controller.php",
"src/Controller/user_controller.php",
"src/Controller/video_controller.php",
"src/Controller/tag_video_controller.php",
"src/Controller/tag_video_time_controller.php",
"src/Functional/autowire.php"
],
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"cocur/slugify": "^3.1",
"firebase/php-jwt": "^5.0",
"ext-mysqli": "*",
"ext-json": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"pear/console_table": "^1.3",
"phpunit/phpunit": "^7.2",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2"
}
}