-
- Downloads
Merge branch 'dev' into 'master'
- Strings : ::token added (mirror ::split) See merge request Trehinos/Thor!37
No related branches found
No related tags found
Showing
- app/res/config/config.yml 2 additions, 2 deletionsapp/res/config/config.yml
- app/res/static/assets/list.yml 1 addition, 1 deletionapp/res/static/assets/list.yml
- app/res/static/assets/thor/thor-theme.css 9 additions, 21 deletionsapp/res/static/assets/thor/thor-theme.css
- app/res/static/assets/thor/thor.toast.js 3 additions, 3 deletionsapp/res/static/assets/thor/thor.toast.js
- app/res/static/assets/vendors 1 addition, 1 deletionapp/res/static/assets/vendors
- app/res/static/commands.yml 4 additions, 0 deletionsapp/res/static/commands.yml
- app/res/static/kernels.yml 1 addition, 1 deletionapp/res/static/kernels.yml
- app/res/views/base.html.twig 1 addition, 0 deletionsapp/res/views/base.html.twig
- app/res/views/components.html.twig 78 additions, 0 deletionsapp/res/views/components.html.twig
- app/res/views/menu.html.twig 11 additions, 13 deletionsapp/res/views/menu.html.twig
- app/res/views/thor/base.html.twig 63 additions, 86 deletionsapp/res/views/thor/base.html.twig
- app/res/views/thor/pages/base.html.twig 0 additions, 1 deletionapp/res/views/thor/pages/base.html.twig
- app/res/views/thor/pages/index.html.twig 17 additions, 31 deletionsapp/res/views/thor/pages/index.html.twig
- app/res/views/thor/user-item.html.twig 34 additions, 0 deletionsapp/res/views/thor/user-item.html.twig
- app/src/Test.php 25 additions, 0 deletionsapp/src/Test.php
- composer.json 52 additions, 48 deletionscomposer.json
- thor/Cli/CliKernel.php 3 additions, 3 deletionsthor/Cli/CliKernel.php
- thor/Cli/Command/Argument.php 1 addition, 3 deletionsthor/Cli/Command/Argument.php
- thor/Cli/Command/Command.php 16 additions, 1 deletionthor/Cli/Command/Command.php
- thor/Cli/Command/CommandError.php 30 additions, 0 deletionsthor/Cli/Command/CommandError.php
vendors @ d04d24dd
app/res/views/components.html.twig
0 → 100644
app/res/views/thor/user-item.html.twig
0 → 100644
app/src/Test.php
0 → 100644
{ | ||
"name": "trehinos/thor", | ||
"description": "Smart framework for PHP-8.1", | ||
"version": "0.9.6", | ||
"type": "project", | ||
"keywords": ["php8.1", "framework", "http", "daemon"], | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"authors": [ | ||
{ | ||
"name": "Sébastien GELDREICH", | ||
"email": "trehinos@gmail.com" | ||
"name": "trehinos/thor", | ||
"description": "Smart framework for PHP-8.2", | ||
"version": "1.1.0", | ||
"type": "project", | ||
"keywords": [ | ||
"php8.2", | ||
"framework", | ||
"http", | ||
"daemon" | ||
], | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"authors": [ | ||
{ | ||
"name": "Sébastien GELDREICH", | ||
"email": "trehinos@gmail.com" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Thor\\": "thor/", | ||
"App\\": "app/src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"vendor-dir": "vendors/", | ||
"bin-dir": "bin/" | ||
}, | ||
"require": { | ||
"php": "^8.2", | ||
"ext-curl": "*", | ||
"ext-ftp": "*", | ||
"ext-intl": "*", | ||
"ext-json": "*", | ||
"ext-mbstring": "*", | ||
"ext-openssl": "*", | ||
"ext-pdo": "*", | ||
"ext-readline": "*", | ||
"ext-zip": "*", | ||
"phpoffice/phpspreadsheet": "1.*", | ||
"datatables.net/editor-php": "2.*", | ||
"symfony/var-dumper": "5.*", | ||
"symfony/yaml": "5.*", | ||
"twig/twig": "3.*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Thor\\": "thor/", | ||
"App\\": "app/src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"vendor-dir": "vendors/", | ||
"bin-dir": "bin/" | ||
}, | ||
"require": { | ||
"php": "^8.1", | ||
"ext-calendar": "*", | ||
"ext-curl": "*", | ||
"ext-ftp": "*", | ||
"ext-intl": "*", | ||
"ext-json": "*", | ||
"ext-mbstring": "*", | ||
"ext-openssl": "*", | ||
"ext-pdo": "*", | ||
"ext-zip": "*", | ||
"ext-readline": "*", | ||
"phpoffice/phpspreadsheet": "1.*", | ||
"datatables.net/editor-php": "2.*", | ||
"symfony/var-dumper": "5.*", | ||
"symfony/yaml": "5.*", | ||
"twig/twig": "3.*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9" | ||
} | ||
} |
Please register or sign in to comment