-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.66 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
{
"name": "ensostudio/php-sandbox",
"description": "The sandbox to test your PHP code online",
"keywords": ["sandbox", "php", "code", "web"],
"license": "MIT",
"homepage": "https://github.com/ensostudio/php-sandbox",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Enso studio",
"homepage": "https://github.com/ensostudio"
},
{
"name": "Contributors",
"homepage": "https://github.com/ensostudio/php-sandbox/graphs/contributors"
}
],
"suggests": {
"nikic/php-parser": "PHP AST tokenizer",
"jetbrains/phpstorm-stubs": "PHP stubs"
},
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"slim/slim": "^4.10.0",
"slim/psr7": "^1.5.0",
"kint-php/kint": "^4.1.3",
"friendsofphp/php-cs-fixer": "^3.9.5",
"symfony/polyfill-php80": "^1.26.0",
"symfony/polyfill-php81": "^1.26.0",
"symfony/polyfill-php82": "^1.26.0"
},
"require-dev": {
"phing/phing": "3.*",
"phing/task-jsmin": "dev-main",
"phing/task-sass": "dev-main",
"scssphp/scssphp": "dev-master",
"npm-asset/ace-builds": "^1.9.5",
"npm-asset/jquery": "^3.6.0",
"npm-asset/bootstrap": "~5.1.3",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"EnsoStudio\\PhpSandbox\\Actions\\": "src/Actions/"
}
},
"config": {
"optimize-autoload": true,
"allow-plugins": {
"phing/phing-composer-configurator": true
}
},
"scripts": {
"build": "phing",
"start": "php -S localhost:8080 -t public"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}