Skip to content

Commit

Permalink
Dev (#7)
Browse files Browse the repository at this point in the history
* Symfony CLI

* Resolver

* More updates
  • Loading branch information
zmitic authored Mar 30, 2024
1 parent fa65eb4 commit a45f9b6
Show file tree
Hide file tree
Showing 30 changed files with 903 additions and 81 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
###> symfony/asset-mapper ###
/public/assets/
/assets/vendor/
/.idea
###< symfony/asset-mapper ###
6 changes: 6 additions & 0 deletions .idea/codeception.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/inventory.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/phpspec.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/symfony2.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions assets/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import '@hotwired/turbo';
import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap-icons/font/bootstrap-icons.min.css'
import './styles/admin.css';
import './styles/app.css';

import './styles/extras.css';
import 'animate.css/animate.min.css';

Expand Down
9 changes: 7 additions & 2 deletions assets/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
body {
background-color: skyblue;
@import url('../../vendor/babdev/pagerfanta-bundle/public/css/pagerfanta.css');

table colgroup col.xxx {
/*display: none;*/
visibility: collapse;
width: 0;
/*background-color: red;*/
}
18 changes: 15 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@
"php": ">=8.3.3",
"ext-ctype": "*",
"ext-iconv": "*",
"babdev/pagerfanta-bundle": "^4.4",
"cuyz/valinor-bundle": "^0.2.3",
"dbrekelmans/bdi": "^1.3",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.1",
"doctrine/orm": "dev-psalmify-query-builder as 3.1.1",
"pagerfanta/doctrine-orm-adapter": "^4.4",
"pagerfanta/twig": "^4.4",
"ramsey/uuid-doctrine": "^2.0",
"runtime/frankenphp-symfony": "^0.2.0",
"strictify/form-mapper-bundle": "dev-master",
"strictify/lazy": "dev-master",
"symfony/asset": "7.0.*",
"symfony/asset-mapper": "7.0.*",
"symfony/console": "7.0.*",
Expand Down Expand Up @@ -47,6 +52,10 @@
{
"type": "github",
"url": "https://github.com/strictify/form-mapper-bundle"
},
{
"type": "github",
"url": "https://github.com/zmitic/orm.git"
}
],
"config": {
Expand All @@ -66,6 +75,9 @@
]
},
"autoload-dev": {
"files": [
"vendor/cuyz/valinor/qa/Psalm/ValinorPsalmPlugin.php"
],
"psr-4": {
"App\\Tests\\": "tests/"
}
Expand Down Expand Up @@ -104,7 +116,7 @@
}
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.5",
"doctrine/doctrine-fixtures-bundle": "^3|^4",
"symfony/debug-bundle": "7.0.*",
"symfony/maker-bundle": "^1.56",
"symfony/monolog-bundle": "^3.0",
Expand Down
Loading

0 comments on commit a45f9b6

Please sign in to comment.