forked from BitLucid/ninjawars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
112 lines (112 loc) · 2.85 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "bitlucid/ninjawars",
"description": "The composer dependencies for the ninjawars game and web components.",
"license": "proprietary",
"scripts": {
"test": "./vendor/bin/phpunit",
"unit-test": "./vendor/bin/phpunit --testsuite Unit",
"lint-fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix ./",
"test-check": "php deploy/check.php",
"test-checkbase": "php deploy/checkbase.php",
"test-cron": "php ./deploy/cron/tick_atomic.php"
},
"autoload": {
"psr-4": {
"model\\": "deploy/model",
"NinjaWars\\": "deploy/",
"NinjaWars\\core\\": "deploy/lib/"
}
},
"require": {
"php": ">=8.2.0",
"components/jquery": "^2.1.1",
"rmm5t/jquery-timeago": "^1",
"ninjawars/jquery-linkify": "^2.1",
"smarty/smarty": "^4.0",
"symfony/http-foundation": "^4.1",
"twbs/bootstrap": "~3.3",
"pimple/pimple": "~3.0",
"oomphinc/composer-installers-extender": "^2.0",
"illuminate/database": "^10.8",
"aws/aws-sdk-php": "^3.281",
"google/recaptcha": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"spatie/phpunit-watcher": "1.23.6"
},
"extra": {
"installer-types": [
"component"
],
"installer-paths": {
"deploy/www/components/{$name}/": [
"type:component"
]
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "rmm5t/jquery-timeago",
"type": "component",
"version": "1.4.3",
"dist": {
"url": "https://github.com/rmm5t/jquery-timeago/archive/v1.4.3.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/rmm5t/jquery-timeago.git",
"type": "git",
"reference": "v1.4.3"
},
"extra": {
"component": {
"scripts": [
"jquery.timeago.js"
]
}
},
"require": {
"oomphinc/composer-installers-extender": "*"
}
}
},
{
"type": "package",
"package": {
"name": "ninjawars/jquery-linkify",
"type": "component",
"version": "2.1.1",
"dist": {
"url": "https://github.com/ninjawars/jquery-linkify/archive/master.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/ninjawars/jquery-linkify.git",
"type": "git",
"reference": "master"
},
"extra": {
"component": {
"files": [
"jquery.linkify.js",
"jquery-linkify.min.js"
]
}
},
"require": {
"oomphinc/composer-installers-extender": "*"
}
}
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"kylekatarnls/update-helper": true,
"oomphinc/composer-installers-extender": true
}
}
}